aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/makefile
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2013-09-10 14:44:16 +1000
committerNeil <nyamatongwe@gmail.com>2013-09-10 14:44:16 +1000
commit8ba6c4c8e180b7506d1cb4f012aac253b3da6750 (patch)
tree6dc045ba14aecf731b1522610bfc164068519ec1 /win32/makefile
parent8972cd49a9cb27f21adcb99b5b12a3791de26c34 (diff)
downloadscintilla-mirror-8ba6c4c8e180b7506d1cb4f012aac253b3da6750.tar.gz
Use C++ struct initialization {} so can drop -Wno-missing-braces setting for gcc.
Diffstat (limited to 'win32/makefile')
-rw-r--r--win32/makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/makefile b/win32/makefile
index 159d66fdf..9ddfd594a 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 -pedantic $(INCLUDEDIRS) -fno-rtti $(D2DFLAGS)
+CXXBASEFLAGS=--std=c++0x -Wall -pedantic $(INCLUDEDIRS) -fno-rtti $(D2DFLAGS)
ifdef DEBUG
CXXFLAGS=-DDEBUG -g $(CXXBASEFLAGS)