We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcdc06a commit bf2db7dCopy full SHA for bf2db7d
.clang-format
@@ -1,7 +1,7 @@
1
---
2
Language: Cpp
3
BasedOnStyle: LLVM
4
-Standard: c++17
+Standard: c++20
5
# Force pointers to the type for C++.
6
DerivePointerAlignment: false
7
PointerAlignment: Left
cmake/compiler-flags.cmake
@@ -1,6 +1,6 @@
include(CpuMarch)
-set(CMAKE_CXX_STANDARD 17)
+set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
cmake/src-dependencies.cmake
@@ -16,7 +16,7 @@ if(BUILD_BENCHMARKING)
16
add_dependencies(dependencies benchmark)
17
endif()
18
19
-target_compile_features(rawspeed PUBLIC cxx_std_17)
+target_compile_features(rawspeed PUBLIC cxx_std_20)
20
21
unset(HAVE_OPENMP)
22
if(WITH_OPENMP)
0 commit comments