From 8ada001bc9a12ed385145235338c56a4f71aac11 Mon Sep 17 00:00:00 2001 From: michael-loki Date: Tue, 12 Mar 2019 10:13:33 +0000 Subject: [PATCH] Remove negative thread safety warning flag This is experimental, and has a bunch of false positives. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 249042e41..74e9ffd5d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -74,7 +74,7 @@ add_compile_options($<$:-fpermissive>) add_compile_options(-Wno-unused-function -Wno-deprecated-declarations -Wno-unknown-pragmas) if (USING_CLANG) - add_compile_options(-Wthread-safety -Wthread-safety-negative) + add_compile_options(-Wthread-safety) endif() if (WITH_COVERAGE)