aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2011-10-10 14:47:07 +1100
committernyamatongwe <devnull@localhost>2011-10-10 14:47:07 +1100
commitc6fa68c6a4d1145fbff6672fa4fb9f9b63895593 (patch)
tree2cf9c7e5e75d28495f9cb77633bcf678d85b86c6
parent0db2ee5ef1861fa6ead62e19dd7d440fa0c25425 (diff)
downloadscintilla-mirror-c6fa68c6a4d1145fbff6672fa4fb9f9b63895593.tar.gz
Removing -Wno-strict-overflow as gcc no longer produces useless
overflow warnings.
-rw-r--r--win32/makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/makefile b/win32/makefile
index 4b8ba397f..c71997c65 100644
--- a/win32/makefile
+++ b/win32/makefile
@@ -19,7 +19,7 @@ LDFLAGS=-shared -static -Wl,--enable-runtime-pseudo-reloc-v2 -mwindows -Wl,--add
LIBS=-lstdc++ -limm32 -lole32 -luuid
# Add -MMD to get dependencies
INCLUDEDIRS=-I ../include -I ../src -I../lexlib
-CXXBASEFLAGS=-Wall -Wno-missing-braces -Wno-char-subscripts -Wno-strict-overflow -pedantic $(INCLUDEDIRS) -fno-rtti
+CXXBASEFLAGS=-Wall -Wno-missing-braces -Wno-char-subscripts -pedantic $(INCLUDEDIRS) -fno-rtti
ifdef DEBUG
CXXFLAGS=-DDEBUG -g $(CXXBASEFLAGS)