Changeset 188677 in webkit for trunk/Source/JavaScriptCore/API/JSValue.mm
- Timestamp:
- Aug 19, 2015, 7:34:02 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/API/JSValue.mm
r185259 r188677 42 42 #import <wtf/HashMap.h> 43 43 #import <wtf/HashSet.h> 44 #import <wtf/Lock.h> 44 45 #import <wtf/ObjcRuntimeExtras.h> 45 #import <wtf/SpinLock.h>46 46 #import <wtf/Vector.h> 47 47 #import <wtf/text/WTFString.h> … … 1115 1115 static StructTagHandler* handerForStructTag(const char* encodedType) 1116 1116 { 1117 static Static SpinLock handerForStructTagLock;1118 SpinLockHolder lockHolder(&handerForStructTagLock);1117 static StaticLock handerForStructTagLock; 1118 LockHolder lockHolder(&handerForStructTagLock); 1119 1119 1120 1120 static StructHandlers* structHandlers = createStructHandlerMap();
Note:
See TracChangeset
for help on using the changeset viewer.