diff options
author | Neil <nyamatongwe@gmail.com> | 2013-09-10 14:44:16 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2013-09-10 14:44:16 +1000 |
commit | a1edd2b133bf3ae4d263cea2f46aacb4b51fccb5 (patch) | |
tree | 95cd567b68fc22493443eedd8b9e86739551d07a /win32/makefile | |
parent | 790cde271408e20b2ffbbe53670e860582df29e4 (diff) | |
download | scintilla-mirror-a1edd2b133bf3ae4d263cea2f46aacb4b51fccb5.tar.gz |
Use C++ struct initialization {} so can drop -Wno-missing-braces setting for gcc.
Diffstat (limited to 'win32/makefile')
-rw-r--r-- | win32/makefile | 2 |
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) |