From 52e382fac1e97e7555aa3b16fdf081b2939026ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjarki=20=C3=81g=C3=BAst=20Gu=C3=B0mundsson?= Date: Mon, 30 Dec 2024 15:02:12 +0000 Subject: [PATCH] Switch to C++20 --- tester/run_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tester/run_test.sh b/tester/run_test.sh index 5c8cf8b..5bbfb21 100755 --- a/tester/run_test.sh +++ b/tester/run_test.sh @@ -16,5 +16,5 @@ cat "$DIR2/$TEST.test.cpp" >> $DIR/tmp.cpp echo "" >> $DIR/tmp.cpp cat $DIR/test_footer.cpp >> $DIR/tmp.cpp set -e -${CXX-g++} $DIR/tmp.cpp -Wall -Wshadow -Wpedantic -Wno-long-long -Wno-sign-compare -std=c++17 -g -o $DIR/tmp.exe +${CXX-g++} $DIR/tmp.cpp -Wall -Wshadow -Wpedantic -Wno-sign-compare -std=c++20 -g -o $DIR/tmp.exe $DIR/tmp.exe