diff options
author | Daniil Cherednik <dan.cherednik@gmail.com> | 2025-06-21 21:53:19 +0200 |
---|---|---|
committer | Daniil Cherednik <dan.cherednik@gmail.com> | 2025-06-22 14:37:24 +0200 |
commit | 45b630c6901d36d06a9fb251c0bf8a91848fd740 (patch) | |
tree | bae801f79670c5978695381ac0b0be155494f0b2 | |
parent | 8b399993d5d6a9b7ef682027c8c15538ab88a156 (diff) | |
download | atracdenc-45b630c6901d36d06a9fb251c0bf8a91848fd740.tar.gz |
Bump c++ version to c++17
-rw-r--r-- | src/CMakeLists.txt | 2 | ||||
-rw-r--r-- | test/CMakeLists.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 17f35b3..17e364d 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,6 +1,6 @@ CMAKE_MINIMUM_REQUIRED(VERSION 3.1...3.26) -set (CMAKE_CXX_STANDARD 14) +set (CMAKE_CXX_STANDARD 17) set (CMAKE_C_STANDARD 11) #add_definitions( "-Wall -O2 -g -Rpass-analysis=loop-vectorize" ) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 8662c3f..f3b6656 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,6 +1,6 @@ CMAKE_MINIMUM_REQUIRED(VERSION 3.1...3.26) -set (CMAKE_CXX_STANDARD 14) +set (CMAKE_CXX_STANDARD 17) set (CMAKE_C_STANDARD 11) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -fsanitize=address -fno-omit-frame-pointer") |