From 0e00c08c0e69a52045068dec41da99d39af79427 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Tue, 5 Feb 2019 12:35:39 +1100 Subject: [PATCH] warnings: disable -Wnoexcept temporarily --- nc_warnings.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nc_warnings.cmake b/nc_warnings.cmake index f758343..0e75ce4 100644 --- a/nc_warnings.cmake +++ b/nc_warnings.cmake @@ -26,7 +26,7 @@ append_compile_flag(-Wdisabled-optimization) append_compile_flag(-Wfloat-conversion) append_compile_flag(-Wfloat-equal) append_compile_flag(-Wno-aggressive-loop-optimizations) -append_compile_flag(-Wnoexcept) +#append_compile_flag(-Wnoexcept) # Wow this can be annoying when combined with Werror append_compile_flag(-Wnon-virtual-dtor) append_compile_flag(-Wparentheses) # Wparenthesis detects assignment in conditionals... append_compile_flag(-Wpointer-arith)