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 | f62669fec2e2e5415b302f3786000579ad136977 (patch) | |
tree | b167e0939efc2c951e3c8a7da4972814ac7296aa | |
parent | 225dfbe352e2581993ef856792c2a3c16eb5a461 (diff) | |
download | scintilla-mirror-f62669fec2e2e5415b302f3786000579ad136977.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) |