aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <unknown>2011-10-10 14:47:07 +1100
committernyamatongwe <unknown>2011-10-10 14:47:07 +1100
commitc8c249d9b32e80ed04138bdcef50fec91a636a10 (patch)
treeaa313e5a5d4b28ccecd27a1469a4b492ea9a1e4c
parent9eb8b4cbb3e7d7a1e0961ee532109dbb97b7d71c (diff)
downloadscintilla-mirror-c8c249d9b32e80ed04138bdcef50fec91a636a10.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)