aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/unit/test.mak
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2018-03-24 09:15:01 +1100
committerNeil <nyamatongwe@gmail.com>2018-03-24 09:15:01 +1100
commitf3830c19917c254dcddfd272518a7b749fe89129 (patch)
tree3d5e86705d64c71de44a89dc090c15f2d49828bb /test/unit/test.mak
parentff707f0fe276677a4d89633ae4964e8b94712ca3 (diff)
downloadscintilla-mirror-f3830c19917c254dcddfd272518a7b749fe89129.tar.gz
Update unit test Visual C++ builds to Visual C++ 2017 with /std:c++latest
but also allowing std::auto_ptr for Catch.
Diffstat (limited to 'test/unit/test.mak')
-rw-r--r--test/unit/test.mak2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/test.mak b/test/unit/test.mak
index 1e056fcba..0db79c69a 100644
--- a/test/unit/test.mak
+++ b/test/unit/test.mak
@@ -6,7 +6,7 @@ EXE = unitTest.exe
INCLUDEDIRS = /I../../include /I../../src /I../../lexlib
-CXXFLAGS = /EHsc /wd 4805 $(INCLUDEDIRS)
+CXXFLAGS = /EHsc /std:c++latest /D_HAS_AUTO_PTR_ETC=1 /wd 4805 $(INCLUDEDIRS)
# Files in this directory containing tests
TESTSRC=test*.cxx