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.
This commit is contained in:
Ben Wiederhake 2021-10-10 15:59:49 +02:00 committed by Linus Groh
parent ee18912373
commit 0321034c87
Notes: sideshowbarker 2024-07-18 02:51:06 +09:00

View File

@ -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)