Skip to content

Commit 8becb9f

Browse files
committed
up the required C++ standard to 20
problem: Many interfaces are made more cumbersome or slower by forcing the use of only up to c++14. solution: As previously discussed, up the required C++ standard to 20 since we have devtoolset gcc everywhere that can compile to that standard.
1 parent cb95173 commit 8becb9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if(POLICY CMP0140)
1919
cmake_policy(SET CMP0140 NEW)
2020
endif()
2121

22-
set(CMAKE_CXX_STANDARD 14 CACHE STRING "The C++ standard to use")
22+
set(CMAKE_CXX_STANDARD 20 CACHE STRING "The C++ standard to use")
2323
set(CMAKE_CXX_STANDARD_REQUIRED ON)
2424
set(CMAKE_CXX_EXTENSIONS OFF)
2525

0 commit comments

Comments
 (0)