From 6982d70f5808c31ff81ebfa7e3b6e5cd55978860 Mon Sep 17 00:00:00 2001 From: PB Date: Sun, 30 Oct 2022 17:58:47 +0100 Subject: [PATCH] Remove "98" from the supported C++ standards list in CMake wxWidgets now requires at least C++11. Closes #22933. --- build/cmake/options.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/cmake/options.cmake b/build/cmake/options.cmake index 593f3ac8d2..d6baa90b67 100644 --- a/build/cmake/options.cmake +++ b/build/cmake/options.cmake @@ -53,7 +53,7 @@ if(NOT MSVC OR MSVC_VERSION GREATER 1800) set(wxCXX_STANDARD_DEFAULT COMPILER_DEFAULT) endif() wx_option(wxBUILD_CXX_STANDARD "C++ standard used to build wxWidgets targets" - ${wxCXX_STANDARD_DEFAULT} STRINGS COMPILER_DEFAULT 98 11 14 17 20) + ${wxCXX_STANDARD_DEFAULT} STRINGS COMPILER_DEFAULT 11 14 17 20) endif() if(WIN32)