Changeset 34425 in webkit for trunk/JavaScriptCore/kjs
- Timestamp:
- Jun 7, 2008, 3:59:39 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/JSGlobalData.cpp
r34412 r34425 36 36 #include "lookup.h" 37 37 #include "nodes.h" 38 #include " parser.h"38 #include "Parser.h" 39 39 40 40 #if USE(MULTIPLE_THREADS) … … 114 114 return *sharedInstance; 115 115 #else 116 return globalSharedInstance(); 116 static JSGlobalData sharedInstance; 117 return sharedInstance; 117 118 #endif 118 119 }
Note:
See TracChangeset
for help on using the changeset viewer.