diff options
author | Neil <nyamatongwe@gmail.com> | 2013-09-10 13:20:50 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2013-09-10 13:20:50 +1000 |
commit | 790cde271408e20b2ffbbe53670e860582df29e4 (patch) | |
tree | 55e136a10d6d02386052be4413fba580ba820051 /win32 | |
parent | 358ba1e32449f09fc706afebca847a996ab5e364 (diff) | |
download | scintilla-mirror-790cde271408e20b2ffbbe53670e860582df29e4.tar.gz |
Drop warning setting -Wno-missing-braces since this has had no effect since gcc 4.2.
Diffstat (limited to 'win32')
-rw-r--r-- | win32/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/makefile b/win32/makefile index 23f253255..159d66fdf 100644 --- a/win32/makefile +++ b/win32/makefile @@ -26,7 +26,7 @@ ifneq "$(shell g++ -c CheckD2D.cxx 2>&1)" "" D2DFLAGS=-DDISABLE_D2D endif -CXXBASEFLAGS=--std=c++0x -Wall -Wno-missing-braces -Wno-char-subscripts -pedantic $(INCLUDEDIRS) -fno-rtti $(D2DFLAGS) +CXXBASEFLAGS=--std=c++0x -Wall -Wno-missing-braces -pedantic $(INCLUDEDIRS) -fno-rtti $(D2DFLAGS) ifdef DEBUG CXXFLAGS=-DDEBUG -g $(CXXBASEFLAGS) |