diff options
author | Andre Heider | 2009-03-19 18:52:38 +0000 |
---|---|---|
committer | Andre Heider | 2009-03-19 18:52:38 +0000 |
commit | a0545c413330d5993806e8d7956a1c254d77020b (patch) | |
tree | f47e4b73d78845973600f62ad029cf00aba37ea4 /Makefile | |
parent | 845f8d018b139a38acf00107f1f95c67a69c363e (diff) | |
download | scummvm-rg350-a0545c413330d5993806e8d7956a1c254d77020b.tar.gz scummvm-rg350-a0545c413330d5993806e8d7956a1c254d77020b.tar.bz2 scummvm-rg350-a0545c413330d5993806e8d7956a1c254d77020b.zip |
Moved -pedantic from Makefile to the end of configure script
svn-id: r39530
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ CXXFLAGS:= -Wall $(CXXFLAGS) # 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+= -pedantic -Wpointer-arith -Wcast-qual -Wcast-align +CXXFLAGS+= -Wpointer-arith -Wcast-qual -Wcast-align CXXFLAGS+= -Wshadow -Wimplicit -Wnon-virtual-dtor -Wwrite-strings # Disable RTTI and exceptions, and enabled checking of pointers returned by "new" |