aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authordhewg2011-03-29 20:34:26 +0200
committerdhewg2011-03-29 21:56:40 +0200
commitdc4c60851f91989cb8b0b0d7d53ef12958b08d35 (patch)
tree9c75eba1584b208144a57436642f0d8fb2a814a3 /Makefile
parent08318134618ab00ac204e56be9148056a87b2aa5 (diff)
downloadscummvm-rg350-dc4c60851f91989cb8b0b0d7d53ef12958b08d35.tar.gz
scummvm-rg350-dc4c60851f91989cb8b0b0d7d53ef12958b08d35.tar.bz2
scummvm-rg350-dc4c60851f91989cb8b0b0d7d53ef12958b08d35.zip
BUILD: Get rid of -Wimplicit
It's already implied by -Wall, and GCC 4.6 complains about it for C++
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3af2d24f8a..4a6a157259 100644
--- a/Makefile
+++ b/Makefile
@@ -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))))