From 63210449c6dc31724aed342e9218a5a76c2c8088 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Sun, 30 May 2021 21:13:49 +0300 Subject: [PATCH] Don't use -fconcepts anymore --- buildfiles/cmake/ConfigureCompiler.cmake | 4 ---- 1 file changed, 4 deletions(-) diff --git a/buildfiles/cmake/ConfigureCompiler.cmake b/buildfiles/cmake/ConfigureCompiler.cmake index e33e39c463..49af51a61f 100644 --- a/buildfiles/cmake/ConfigureCompiler.cmake +++ b/buildfiles/cmake/ConfigureCompiler.cmake @@ -27,10 +27,6 @@ else() add_compile_options(-fstack-protector) add_compile_options(-msse -msse2 -mcx16) - if ((${CMAKE_CXX_COMPILER_ID} MATCHES "GNU") AND (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 10.1)) - add_compile_options(-fconcepts) - endif() - add_compile_options(-Werror=old-style-cast) add_compile_options(-Werror=sign-compare) add_compile_options(-Werror=reorder)