Changeset 205933 in webkit for trunk/Source/JavaScriptCore/API/JSCallbackObject.h
- Timestamp:
- Sep 14, 2016, 3:32:58 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/API/JSCallbackObject.h
r201703 r205933 150 150 void* getPrivate(); 151 151 152 // FIXME: We should fix the warnings for extern-template in JSObject template classes: https://bugs.webkit.org/show_bug.cgi?id=161979 153 #if COMPILER(CLANG) 154 #if __has_warning("-Wundefined-var-template") 155 #pragma clang diagnostic push 156 #pragma clang diagnostic ignored "-Wundefined-var-template" 157 #endif 158 #endif 152 159 DECLARE_INFO; 160 #if COMPILER(CLANG) 161 #if __has_warning("-Wundefined-var-template") 162 #pragma clang diagnostic pop 163 #endif 164 #endif 153 165 154 166 JSClassRef classRef() const { return m_callbackObjectData->jsClass; }
Note:
See TracChangeset
for help on using the changeset viewer.