From 0321034c870426daba7c7732f9c187c4bc7443eb Mon Sep 17 00:00:00 2001 From: Ben Wiederhake Date: Sun, 10 Oct 2021 15:59:49 +0200 Subject: [PATCH] Meta: Re-enable warnings for deprecated copies This used to supress two true-positives, and zero false-positives. That's good enough in my book to warrant re-activation. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 00b1498de2..515287c75d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -154,7 +154,7 @@ endif() # The following warnings are sorted by the "base" name (the part excluding the initial Wno or W). add_compile_options(-Wno-address-of-packed-member) add_compile_options(-Wcast-qual) -add_compile_options(-Wno-deprecated-copy) +add_compile_options(-Wdeprecated-copy) add_compile_options(-Wduplicated-cond) add_compile_options(-Wno-expansion-to-defined) add_compile_options(-Wformat=2)