Changeset 33318

Show
Ignore:
Timestamp:
05/12/08 23:03:05 (6 months ago)
Author:
mrowe@apple.com
Message:

2008-04-30 Geoffrey Garen <ggaren@apple.com>

Release build fix: Always compile in "isGlobalObject", since it's
listed in our .exp file.

  • kjs/ExecState.cpp: (KJS::ExecState::isGlobalObject):
  • kjs/ExecState.h:
Location:
branches/squirrelfish/JavaScriptCore
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • branches/squirrelfish/JavaScriptCore/ChangeLog

    r33317 r33318  
     12008-04-30  Geoffrey Garen  <ggaren@apple.com> 
     2 
     3        Release build fix: Always compile in "isGlobalObject", since it's 
     4        listed in our .exp file. 
     5 
     6        * kjs/ExecState.cpp: 
     7        (KJS::ExecState::isGlobalObject): 
     8        * kjs/ExecState.h: 
     9 
    1102008-04-30  Oliver Hunt  <oliver@apple.com> 
    211 
  • branches/squirrelfish/JavaScriptCore/kjs/ExecState.cpp

    r33314 r33318  
    4242} 
    4343 
    44 #ifndef NDEBUG 
    4544bool ExecState::isGlobalObject(JSObject* o) const 
    4645{ 
    4746    return o->isGlobalObject(); 
    4847} 
    49 #endif 
    5048 
    5149} // namespace KJS 
  • branches/squirrelfish/JavaScriptCore/kjs/ExecState.h

    r33316 r33318  
    103103 
    104104    private: 
    105 #ifndef NDEBUG 
    106105        bool isGlobalObject(JSObject*) const; 
    107 #endif 
    108106     
    109107        JSGlobalObject* m_globalObject;