diff options
| author | Neil <nyamatongwe@gmail.com> | 2016-09-30 10:32:58 +1000 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2016-09-30 10:32:58 +1000 |
| commit | 03378bf5015987dd140d7fabd3d043ae909a4afc (patch) | |
| tree | 51d96b5b07012161fc54b20d62edf68927e70833 /win32/scintilla.mak | |
| parent | 300629b456064ea2f89ec3ceb90ad8c74b8e500c (diff) | |
| download | scintilla-mirror-03378bf5015987dd140d7fabd3d043ae909a4afc.tar.gz | |
Enable SplitVector to store objects by using std::copy to copy elements instead
of memmove and memcpy.
This allows SplitVector<std::string> to work.
Diffstat (limited to 'win32/scintilla.mak')
| -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 6a3be2564..483f78b3c 100644 --- a/win32/scintilla.mak +++ b/win32/scintilla.mak @@ -24,7 +24,7 @@ XP_DEFINE=-D_USING_V110_SDK71_ XP_LINK=-SUBSYSTEM:WINDOWS,5.01 !ENDIF -CRTFLAGS=-D_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES=1 -D_CRT_SECURE_NO_DEPRECATE=1 $(XP_DEFINE) +CRTFLAGS=-D_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES=1 -D_CRT_SECURE_NO_DEPRECATE=1 -D_SCL_SECURE_NO_WARNINGS=1 $(XP_DEFINE) CXXFLAGS=-Zi -TP -MP -W4 -EHsc -Zc:forScope -Zc:wchar_t $(CRTFLAGS) CXXDEBUG=-Od -MTd -DDEBUG CXXNDEBUG=-O1 -MT -DNDEBUG -GL |
