Changeset 38646 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Nov 20, 2008, 5:06:49 PM (17 years ago)
Author:
[email protected]
Message:

Fix build.


Reviewed by Sam Weinig.

  • parser/Parser.cpp: (JSC::Parser::reparse):
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r38641 r38646  
     12008-11-20  Steve Falkenburg  <[email protected]>
     2
     3        Fix build.
     4       
     5        Reviewed by Sam Weinig.
     6
     7        * parser/Parser.cpp:
     8        (JSC::Parser::reparse):
     9
    1102008-11-20  Geoffrey Garen  <[email protected]>
    211
  • trunk/JavaScriptCore/parser/Parser.cpp

    r38638 r38646  
    7272    parse(globalData, 0, 0);
    7373    ASSERT(m_sourceElements);
    74     functionBodyNode->adoptData(auto_ptr<ScopeNodeData>(new ScopeNodeData(m_sourceElements.get(),
    75                                                                           m_varDeclarations ? &m_varDeclarations->data : 0,
    76                                                                           m_funcDeclarations ? &m_funcDeclarations->data : 0,
    77                                                                           m_numConstants)));
     74    functionBodyNode->adoptData(std::auto_ptr<ScopeNodeData>(new ScopeNodeData(m_sourceElements.get(),
     75                                                                               m_varDeclarations ? &m_varDeclarations->data : 0,
     76                                                                               m_funcDeclarations ? &m_funcDeclarations->data : 0,
     77                                                                               m_numConstants)));
    7878    bool usesArguments = functionBodyNode->usesArguments();
    7979    functionBodyNode->setFeatures(m_features);
Note: See TracChangeset for help on using the changeset viewer.