From e9d73c48cac9f7dbe96f47adc6533a2adadd8f41 Mon Sep 17 00:00:00 2001 From: yhirose Date: Fri, 24 Jan 2020 19:58:43 -0500 Subject: [PATCH] Added '-Wno-c++2a-compat' --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4401316..4eabf7f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -36,6 +36,7 @@ if(CMAKE_CXX_COMPILER_ID STREQUAL "Clang" -Wno-switch-enum -Wno-missing-noreturn -Wno-covered-switch-default + -Wno-c++2a-compat ) elseif(CMAKE_CXX_COMPILER_ID STREQUAL "GNU") set(warning_options -Wall -Wpedantic -Wextra)