Changeset 245516 in webkit


Ignore:
Timestamp:
May 20, 2019 7:50:54 AM (5 years ago)
Author:
commit-queue@webkit.org
Message:

[WPE][Qt] Use C++17 instead of C++14
https://bugs.webkit.org/show_bug.cgi?id=197415

Patch by Ludovico de Nittis <ludovico.denittis@collabora.com> on 2019-05-20
Reviewed by Philippe Normand.

There was a regression introduced with the commit https://bugs.webkit.org/show_bug.cgi?id=197131
The WPE Qt port was not updated to C++17 and this leaded to a compilation error.

Source/WebKit:

  • PlatformWPE.cmake:

Tools:

  • TestWebKitAPI/glib/CMakeLists.txt:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r245513 r245516  
     12019-05-20  Ludovico de Nittis  <ludovico.denittis@collabora.com>
     2
     3        [WPE][Qt] Use C++17 instead of C++14
     4        https://bugs.webkit.org/show_bug.cgi?id=197415
     5
     6        Reviewed by Philippe Normand.
     7
     8        There was a regression introduced with the commit https://bugs.webkit.org/show_bug.cgi?id=197131
     9        The WPE Qt port was not updated to C++17 and this leaded to a compilation error.
     10
     11        * PlatformWPE.cmake:
     12
    1132019-05-20  Carlos Garcia Campos  <cgarcia@igalia.com>
    214
  • trunk/Source/WebKit/PlatformWPE.cmake

    r245337 r245516  
    393393        OUTPUT_NAME qtwpe
    394394        AUTOMOC ON
    395         CXX_STANDARD 14
     395        CXX_STANDARD 17
    396396    )
    397397    target_compile_definitions(qtwpe PUBLIC QT_NO_KEYWORDS=1)
  • trunk/Tools/ChangeLog

    r245515 r245516  
     12019-05-20  Ludovico de Nittis  <ludovico.denittis@collabora.com>
     2
     3        [WPE][Qt] Use C++17 instead of C++14
     4        https://bugs.webkit.org/show_bug.cgi?id=197415
     5
     6        Reviewed by Philippe Normand.
     7
     8        There was a regression introduced with the commit https://bugs.webkit.org/show_bug.cgi?id=197131
     9        The WPE Qt port was not updated to C++17 and this leaded to a compilation error.
     10
     11        * TestWebKitAPI/glib/CMakeLists.txt:
     12
    1132019-05-20  Ludovico de Nittis  <ludovico.denittis@collabora.com>
    214
  • trunk/Tools/TestWebKitAPI/glib/CMakeLists.txt

    r243285 r245516  
    159159        RUNTIME_OUTPUT_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/TestWebKitAPI/WPEQt
    160160        AUTOMOC ON
    161         CXX_STANDARD 14
     161        CXX_STANDARD 17
    162162    )
    163163    target_compile_definitions(${test_name} PUBLIC QT_NO_KEYWORDS=1)
Note: See TracChangeset for help on using the changeset viewer.