Skip to content

Commit 1dea379

Browse files
authored
Specify C++14 as standard in CMake, not C++17 (#489)
1 parent 8a739e4 commit 1dea379

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ message(STATUS "VMA_DEBUG_INITIALIZE_ALLOCATIONS = ${VMA_DEBUG_INITIALIZE_ALLOCA
3434
message(STATUS "VMA_DEBUG_GLOBAL_MUTEX = ${VMA_DEBUG_GLOBAL_MUTEX}")
3535
message(STATUS "VMA_DEBUG_DONT_EXCEED_MAX_MEMORY_ALLOCATION_COUNT = ${VMA_DEBUG_DONT_EXCEED_MAX_MEMORY_ALLOCATION_COUNT}")
3636

37-
set(CMAKE_CXX_STANDARD 17)
37+
set(CMAKE_CXX_STANDARD 14)
3838
set(CMAKE_CXX_STANDARD_REQUIRED ON)
3939
set(CMAKE_CXX_EXTENSIONS OFF)
4040

0 commit comments

Comments
 (0)