Changeset 27200 in webkit for trunk/JavaScriptCore/kjs/nodes.cpp


Ignore:
Timestamp:
Oct 28, 2007, 7:08:18 PM (18 years ago)
Author:
ggaren
Message:

Build fix: use the new-fangled missingSymbolMarker().

  • kjs/nodes.cpp: (KJS::ResolveNode::optimizeVariableAccess):
  • kjs/nodes.h: (KJS::LocalVarAccessNode::LocalVarAccessNode):
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/nodes.cpp

    r27199 r27200  
    402402{
    403403    size_t index = functionBody->symbolTable().get(ident.ustring().rep());
    404     if (index != missingSymbolMarker)
     404    if (index != missingSymbolMarker())
    405405        new (this) LocalVarAccessNode(this, index);
    406406}
Note: See TracChangeset for help on using the changeset viewer.