Changeset 194473 in webkit


Ignore:
Timestamp:
Dec 31, 2015, 4:19:20 PM (9 years ago)
Author:
ddkilzer@apple.com
Message:

REGRESSION (r194470): Fix warnings uncovered by migrating to WTF_MOVE
<https://bugs.webkit.org/show_bug.cgi?id=152601>

Ignore unknown pragmas on older clangs. Fixes the following
build failure:

Tools/TestWebKitAPI/Tests/WTF/NakedPtr.cpp:184:34: error: unknown warning group '-Wself-move', ignored [-Werror,-Wunknown-pragmas]
#pragma clang diagnostic ignored "-Wself-move"


1 error generated.

  • TestWebKitAPI/Tests/WTF/NakedPtr.cpp:

(TestWebKitAPI::TEST):

  • TestWebKitAPI/Tests/WTF/RefPtr.cpp:

(TestWebKitAPI::TEST):

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r194471 r194473  
     12015-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
    1192015-12-31  Andy Estes  <aestes@apple.com>
    220
  • trunk/Tools/TestWebKitAPI/Tests/WTF/NakedPtr.cpp

    r194470 r194473  
    182182#if COMPILER(CLANG)
    183183#pragma clang diagnostic push
     184#pragma clang diagnostic ignored "-Wunknown-pragmas"
    184185#pragma clang diagnostic ignored "-Wself-move"
    185186#endif
  • trunk/Tools/TestWebKitAPI/Tests/WTF/RefPtr.cpp

    r194470 r194473  
    273273#if COMPILER(CLANG)
    274274#pragma clang diagnostic push
     275#pragma clang diagnostic ignored "-Wunknown-pragmas"
    275276#pragma clang diagnostic ignored "-Wself-move"
    276277#endif
Note: See TracChangeset for help on using the changeset viewer.