diff options
author | Max Horn | 2010-07-01 23:12:45 +0000 |
---|---|---|
committer | Max Horn | 2010-07-01 23:12:45 +0000 |
commit | 4fabca98a58c0a11a056195107822dcbdea79d9e (patch) | |
tree | 4ffad2341a52c684454baa7144fb4a7a3b58689a /Makefile | |
parent | 762ff57e0dd906e7a256c1d832c67f345faf8883 (diff) | |
download | scummvm-rg350-4fabca98a58c0a11a056195107822dcbdea79d9e.tar.gz scummvm-rg350-4fabca98a58c0a11a056195107822dcbdea79d9e.tar.bz2 scummvm-rg350-4fabca98a58c0a11a056195107822dcbdea79d9e.zip |
Remove -Wcast-align -- it cause many spurious warnings on several ports
svn-id: r50583
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ ifeq "$(HAVE_GCC)" "1" # Turn off some annoying and not-so-useful warnings CXXFLAGS+= -Wno-long-long -Wno-multichar -Wno-unknown-pragmas -Wno-reorder # Enable even more warnings... - CXXFLAGS+= -Wpointer-arith -Wcast-qual -Wcast-align + CXXFLAGS+= -Wpointer-arith -Wcast-qual CXXFLAGS+= -Wshadow -Wimplicit -Wnon-virtual-dtor -Wwrite-strings # Currently we disable this gcc flag, since it will also warn in cases, |