Changeset 34979 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Jul 3, 2008, 1:06:24 AM (17 years ago)
Author:
Simon Hausmann
Message:

2008-07-03 Simon Hausmann <Simon Hausmann>

Reviewed by Alexey Proskuryakov.

Fix the non-threaded build.

Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r34978 r34979  
     12008-07-03  Simon Hausmann  <[email protected]>
     2
     3        Reviewed by Alexey Proskuryakov.
     4
     5        Fix the non-threaded build.
     6
     7        * kjs/JSGlobalData.cpp:
     8        (KJS::JSGlobalData::threadInstanceInternal):
     9
    1102008-07-03  Simon Hausmann  <[email protected]>
    211
  • trunk/JavaScriptCore/kjs/JSGlobalData.cpp

    r34977 r34979  
    153153    return *threadInstance;
    154154#else
    155     static JSGlobalData threadInstance;
    156     return &threadInstance;
     155    static JSGlobalData* threadInstance;
     156    return threadInstance;
    157157#endif
    158158}
Note: See TracChangeset for help on using the changeset viewer.