diff options
author | Neil <nyamatongwe@gmail.com> | 2013-07-21 20:01:49 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2013-07-21 20:01:49 +1000 |
commit | 8b6f54a72db2d08ad450580a959c7c6b3668dc94 (patch) | |
tree | 5daac6bcc7a8928b56891d39b9841d173ecd5179 | |
parent | 78c589c07957038705cd7bb05c9f7bc3d19c9056 (diff) | |
download | scintilla-mirror-8b6f54a72db2d08ad450580a959c7c6b3668dc94.tar.gz |
Add standard compliance flag.
-rw-r--r-- | win32/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/makefile b/win32/makefile index c9086969a..d1fb8418f 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 -pedantic $(INCLUDEDIRS) -fno-rtti +CXXBASEFLAGS=--std=c++0x -Wall -Wno-missing-braces -Wno-char-subscripts -pedantic $(INCLUDEDIRS) -fno-rtti ifdef DEBUG CXXFLAGS=-DDEBUG -g $(CXXBASEFLAGS) |