diff options
| author | Neil <nyamatongwe@gmail.com> | 2019-04-28 08:46:10 +1000 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2019-04-28 08:46:10 +1000 |
| commit | aa0f59453eb4ecbadbcf5959ce14a3f0371d396d (patch) | |
| tree | 221a1374609f20ad122710a6bd5daf456a3834dd /test/unit/test.mak | |
| parent | c70faaf270c47555d965d9a6949fdb2e06b5dfdb (diff) | |
| download | scintilla-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.mak | 2 |
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 |
