Changeset 194473 in webkit
- Timestamp:
- Dec 31, 2015, 4:19:20 PM (9 years ago)
- Location:
- trunk/Tools
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r194471 r194473 1 2015-12-31 David Kilzer <ddkilzer@apple.com> 2 3 REGRESSION (r194470): Fix warnings uncovered by migrating to WTF_MOVE 4 <https://bugs.webkit.org/show_bug.cgi?id=152601> 5 6 Ignore unknown pragmas on older clangs. Fixes the following 7 build failure: 8 9 Tools/TestWebKitAPI/Tests/WTF/NakedPtr.cpp:184:34: error: unknown warning group '-Wself-move', ignored [-Werror,-Wunknown-pragmas] 10 #pragma clang diagnostic ignored "-Wself-move" 11 ^ 12 1 error generated. 13 14 * TestWebKitAPI/Tests/WTF/NakedPtr.cpp: 15 (TestWebKitAPI::TEST): 16 * TestWebKitAPI/Tests/WTF/RefPtr.cpp: 17 (TestWebKitAPI::TEST): 18 1 19 2015-12-31 Andy Estes <aestes@apple.com> 2 20 -
trunk/Tools/TestWebKitAPI/Tests/WTF/NakedPtr.cpp
r194470 r194473 182 182 #if COMPILER(CLANG) 183 183 #pragma clang diagnostic push 184 #pragma clang diagnostic ignored "-Wunknown-pragmas" 184 185 #pragma clang diagnostic ignored "-Wself-move" 185 186 #endif -
trunk/Tools/TestWebKitAPI/Tests/WTF/RefPtr.cpp
r194470 r194473 273 273 #if COMPILER(CLANG) 274 274 #pragma clang diagnostic push 275 #pragma clang diagnostic ignored "-Wunknown-pragmas" 275 276 #pragma clang diagnostic ignored "-Wself-move" 276 277 #endif
Note:
See TracChangeset
for help on using the changeset viewer.