Skip to content

Commit

Permalink
BUILD: Get rid of -Wimplicit
Browse files Browse the repository at this point in the history
It's already implied by -Wall, and GCC 4.6 complains about it for C++
  • Loading branch information
dhewg committed Mar 29, 2011
1 parent 0831813 commit dc4c608
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -26,7 +26,7 @@ ifeq "$(HAVE_GCC)" "1"
CXXFLAGS+= -Wno-long-long -Wno-multichar -Wno-unknown-pragmas -Wno-reorder
# Enable even more warnings...
CXXFLAGS+= -Wpointer-arith -Wcast-qual
CXXFLAGS+= -Wshadow -Wimplicit -Wnon-virtual-dtor -Wwrite-strings
CXXFLAGS+= -Wshadow -Wnon-virtual-dtor -Wwrite-strings

# Currently we disable this gcc flag, since it will also warn in cases,
# where using GCC_PRINTF (means: __attribute__((format(printf, x, y))))
Expand Down

0 comments on commit dc4c608

Please sign in to comment.