summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2021-11-06 10:24:35 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2021-11-06 10:33:15 +0100
commit1689e28435021f9bd12d92d167113338eb230057 (patch)
treed8a8aeba7e12c1f11c299471dc8dd98a4c554dee /test
parent463f0740e1731c15917ffdb3e2f4b3f4c83aa024 (diff)
Use C++20.
Diffstat (limited to 'test')
-rw-r--r--test/ctor.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/ctor.cc b/test/ctor.cc
index d7cad34..0c3acfd 100644
--- a/test/ctor.cc
+++ b/test/ctor.cc
@@ -18,7 +18,7 @@ BuildConfigurations ctorTestConfigs()
"../src/execute.cc",
},
.cxxflags = {
- "-std=c++17", "-O3", "-s", "-Wall", "-Werror",
+ "-std=c++20", "-O3", "-s", "-Wall", "-Werror",
"-I../src", "-Iuunit",
"-DOUTPUT=\"execute\"",
},
@@ -33,7 +33,7 @@ BuildConfigurations ctorTestConfigs()
},
.depends = {"libctor.a"},
.cxxflags = {
- "-std=c++17", "-O3", "-s", "-Wall", "-Werror",
+ "-std=c++20", "-O3", "-s", "-Wall", "-Werror",
"-I../src", "-Iuunit",
"-DOUTPUT=\"tasks\"",
},
@@ -48,7 +48,7 @@ BuildConfigurations ctorTestConfigs()
},
.depends = {"libctor.a"},
.cxxflags = {
- "-std=c++17", "-O3", "-s", "-Wall", "-Werror",
+ "-std=c++20", "-O3", "-s", "-Wall", "-Werror",
"-I../src", "-Iuunit",
"-DOUTPUT=\"source_type\"",
},