Meta+Documentation+Ports: Move from C++20 to C++23

Now that oss-fuzz is on a clang commit > the 17.x release candidates,
we can start looking at some shiny new features to enable.
This commit is contained in:
Andrew Kaster
2024-04-30 07:19:35 -06:00
committed by Andrew Kaster
parent 5bb37caf9e
commit 77e890b15e
18 changed files with 21 additions and 21 deletions

View File

@@ -3,7 +3,7 @@
echo > $2/Makefile <<-EOF
PROGRAM = $1
OBJS = main.o
CXXFLAGS = -g -std=c++2a
CXXFLAGS = -g -std=c++23
all: \$(PROGRAM)

View File

@@ -12,7 +12,7 @@ sed -i "s/\\\$LibName/$3/g" $2/Class1.cpp
echo > $2/Makefile <<-EOF
LIBRARY = $1.so
OBJS = Class1.o
CXXFLAGS = -g -std=c++2a
CXXFLAGS = -g -std=c++23
all: \$(LIBRARY)