diff options
author | nyamatongwe <devnull@localhost> | 2002-06-09 02:55:30 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-06-09 02:55:30 +0000 |
commit | 27e9dd738c874dacb3bc96736b855fcd9b3a7b78 (patch) | |
tree | 21c7ff5ec672f937b0eb2056943a511dc8d58bf1 | |
parent | d447f6269cb4be95dce715197bf9ee101350a7db (diff) | |
download | scintilla-mirror-27e9dd738c874dacb3bc96736b855fcd9b3a7b78.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 |