Ignore:
Timestamp:
Aug 15, 2008, 1:32:01 AM (17 years ago)
Author:
[email protected]
Message:

Build fix.

  • JavaScriptCore.xcodeproj/project.pbxproj: Marked OpaqueJSString as private
  • kjs/identifier.cpp: (KJS::Identifier::checkSameIdentifierTable):
  • kjs/identifier.h: (KJS::Identifier::add): Since checkSameIdentifierTable is exported for debug build's sake, gcc wants it to be non-inline in release builds, too.
File:
1 edited

Legend:

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

    r35775 r35776  
    234234    ASSERT(rep->identifierTable() == globalData->identifierTable);
    235235}
    236 
     236#else
     237void Identifier::checkSameIdentifierTable(ExecState*, UString::Rep*)
     238{
     239}
     240
     241void Identifier::checkSameIdentifierTable(JSGlobalData*, UString::Rep*)
     242{
     243}
    237244#endif
    238245
Note: See TracChangeset for help on using the changeset viewer.