Changeset 230545 in webkit


Ignore:
Timestamp:
Apr 11, 2018 1:38:21 PM (6 years ago)
Author:
Jonathan Bedard
Message:

Fix TestInvocation class for newer versions of clang.
https://bugs.webkit.org/show_bug.cgi?id=184508
<rdar://problem/39328648>

Reviewed by Alexey Proskuryakov.

Declare TestInvocation to be final so it does not require a virtual destructor.

  • WebKitTestRunner/TestInvocation.h:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r230533 r230545  
     12018-04-11  Jonathan Bedard  <jbedard@apple.com>
     2
     3        Fix TestInvocation class for newer versions of clang.
     4        https://bugs.webkit.org/show_bug.cgi?id=184508
     5        <rdar://problem/39328648>
     6
     7        Reviewed by Alexey Proskuryakov.
     8
     9        Declare TestInvocation to be final so it does not require a virtual destructor.
     10
     11        * WebKitTestRunner/TestInvocation.h:
     12
    1132018-04-10  Alex Christensen  <achristensen@webkit.org>
    214
  • trunk/Tools/WebKitTestRunner/TestInvocation.h

    r228983 r230545  
    3737namespace WTR {
    3838
    39 class TestInvocation : public UIScriptContextDelegate {
     39class TestInvocation final : public UIScriptContextDelegate {
    4040    WTF_MAKE_NONCOPYABLE(TestInvocation);
    4141public:
Note: See TracChangeset for help on using the changeset viewer.