diff options
author | nyamatongwe <unknown> | 2002-06-09 02:55:30 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2002-06-09 02:55:30 +0000 |
commit | 1511b05408236df30b05670faffdef2730e3caa1 (patch) | |
tree | 21c7ff5ec672f937b0eb2056943a511dc8d58bf1 | |
parent | f4404df83420472a536a908bb03ace1ee91607fb (diff) | |
download | scintilla-mirror-1511b05408236df30b05670faffdef2730e3caa1.tar.gz |
Choose compile options that are more compatible with standard C++.
-rw-r--r-- | win32/scintilla.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/scintilla.mak b/win32/scintilla.mak index 8f0084b3e..1888224d7 100644 --- a/win32/scintilla.mak +++ b/win32/scintilla.mak @@ -35,7 +35,7 @@ CC=cl RC=rc LD=link -CXXFLAGS=-Zi -TP -W4 +CXXFLAGS=-Zi -TP -W4 -Zc:forScope -Zc:wchar_t # For something scary:-Wp64 CXXDEBUG=-Od -MTd -DDEBUG CXXNDEBUG=-O1 -MT -DNDEBUG -GL |