Changeset 34979 in webkit for trunk/JavaScriptCore
- Timestamp:
- Jul 3, 2008, 1:06:24 AM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r34978 r34979 1 2008-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 1 10 2008-07-03 Simon Hausmann <[email protected]> 2 11 -
trunk/JavaScriptCore/kjs/JSGlobalData.cpp
r34977 r34979 153 153 return *threadInstance; 154 154 #else 155 static JSGlobalData threadInstance;156 return &threadInstance;155 static JSGlobalData* threadInstance; 156 return threadInstance; 157 157 #endif 158 158 }
Note:
See TracChangeset
for help on using the changeset viewer.