aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAndre Heider2010-05-08 21:34:10 +0000
committerAndre Heider2010-05-08 21:34:10 +0000
commit7bb2c9b5f4c3c91e33a4d6b40630a861cfcc247c (patch)
treee2c431ae11dd16aaba1fd9b93622cf4666aa895a /Makefile
parentfef4060a22627a8d53ed1df837bd4ea53574bf98 (diff)
downloadscummvm-rg350-7bb2c9b5f4c3c91e33a4d6b40630a861cfcc247c.tar.gz
scummvm-rg350-7bb2c9b5f4c3c91e33a4d6b40630a861cfcc247c.tar.bz2
scummvm-rg350-7bb2c9b5f4c3c91e33a4d6b40630a861cfcc247c.zip
Remove the disabled -Wuninitialized here, it's covered by --enable-release
svn-id: r48973
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 0 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 66861d05e8..8c3882da32 100644
--- a/Makefile
+++ b/Makefile
@@ -36,12 +36,6 @@ ifeq "$(HAVE_GCC)" "1"
# Disable RTTI and exceptions, and enable checking of pointers returned by "new"
CXXFLAGS+= -fno-rtti -fno-exceptions -fcheck-new
-
- # There is a nice extra warning that flags variables that are potentially
- # used before being initialized. Very handy to catch a certain kind of
- # bugs. Unfortunately, it only works when optimizations are turned on,
- # which is why we normally don't use it.
- #CXXFLAGS+= -O -Wuninitialized
endif
ifeq "$(HAVE_CLANG)" "1"