From 82e56c7107f9ea87683757bd9a7c1bb261adba72 Mon Sep 17 00:00:00 2001 From: Steve Lhomme Date: Sat, 27 Jan 2024 08:18:27 +0100 Subject: [PATCH] Switch to C++17 As will be done in libebml as well. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4538ff07..221c8ac6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,7 @@ find_package(EBML 2.0.0 REQUIRED) include(GNUInstallDirs) -set(CMAKE_CXX_STANDARD 14) +set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) include(CheckCXXCompilerFlag)