diff options
author | ReinUsesLisp <[email protected]> | 2020-07-29 05:46:50 -0300 |
---|---|---|
committer | ReinUsesLisp <[email protected]> | 2020-07-29 05:46:50 -0300 |
commit | c4ea8f4b76d416db1a53819390bc9581ae038116 (patch) | |
tree | b801557da79769fb10eca9362f336443eb3449cb /CMakeLists.txt | |
parent | eefca56afd49379bdebc97ded8b480839f930881 (diff) | |
download | sirit-c4ea8f4b76d416db1a53819390bc9581ae038116.tar.gz sirit-c4ea8f4b76d416db1a53819390bc9581ae038116.zip |
Upgrade to C++20 and use std::span
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 047041f..3b0574f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,7 +17,7 @@ if (NOT CMAKE_BUILD_TYPE) endif() # Set hard requirements for C++ -set(CMAKE_CXX_STANDARD 17) +set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_EXTENSIONS OFF) |