aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/unit/test.mak
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2019-04-28 08:46:10 +1000
committerNeil <nyamatongwe@gmail.com>2019-04-28 08:46:10 +1000
commitaa0f59453eb4ecbadbcf5959ce14a3f0371d396d (patch)
tree221a1374609f20ad122710a6bd5daf456a3834dd /test/unit/test.mak
parentc70faaf270c47555d965d9a6949fdb2e06b5dfdb (diff)
downloadscintilla-mirror-aa0f59453eb4ecbadbcf5959ce14a3f0371d396d.tar.gz
Switch from /std:c++latest to /std:c++17 as Visual C++ 2019 now includes some
C++20 features.
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 fc4bb1671..42b17e556 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 /std:c++latest /D_HAS_AUTO_PTR_ETC=1 /wd 4805 $(INCLUDEDIRS)
+CXXFLAGS = /EHsc /std:c++17 /D_HAS_AUTO_PTR_ETC=1 /wd 4805 $(INCLUDEDIRS)
# Files in this directory containing tests
TESTSRC=test*.cxx