Skip to content

Commit

Permalink
Meta: Re-enable warnings for deprecated copies
Browse files Browse the repository at this point in the history
This used to supress two true-positives, and zero false-positives.

That's good enough in my book to warrant re-activation.
  • Loading branch information
BenWiederhake authored and linusg committed Oct 10, 2021
1 parent ee18912 commit 0321034
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 0321034

Please sign in to comment.