Skip to content

Commit 5a4209b

Browse files
committed
enabled some GCC warnings
1 parent b3110a7 commit 5a4209b

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

CMakeLists.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,9 @@ if (CMAKE_CXX_COMPILER_ID MATCHES "GNU")
2727
add_compile_options(-Wfloat-equal) # Floating values used in equality comparisons
2828
add_compile_options(-Wmissing-declarations) # If a global function is defined without a previous declaration
2929
add_compile_options(-Wmissing-format-attribute) #
30-
add_compile_options(-Wno-long-long)
3130
add_compile_options(-Wpacked) #
3231
add_compile_options(-Wredundant-decls) # if anything is declared more than once in the same scope
3332
add_compile_options(-Wundef)
34-
add_compile_options(-Wno-missing-braces)
35-
add_compile_options(-Wno-sign-compare)
3633
add_compile_options(-Wno-multichar)
3734
add_compile_options(-Woverloaded-virtual) # when a function declaration hides virtual functions from a base class
3835

0 commit comments

Comments
 (0)