summaryrefslogtreecommitdiff
path: root/examples/Makefile
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2023-01-26 20:38:52 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2023-01-26 20:38:52 +0100
commit8c54d41a063a595b8663490b2bbd1d06bac209f7 (patch)
tree96bba4965486d4ed798a6648894e24cd2a61c937 /examples/Makefile
parent33b40f71fcea36987cc30b0f57f85aff1b8e54ff (diff)
Use std::source_location instead of __FILE__ and __LINE__ and add new functions for use instead of macros.source_location
Diffstat (limited to 'examples/Makefile')
-rw-r--r--examples/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/Makefile b/examples/Makefile
index 7ab11fa..2f00198 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -3,7 +3,7 @@ TESTS=\
test_ExampleTest
CXX ?= g++
-CXXFLAGS ?= -g -std=c++17 -Wall -Werror -Wextra -Wconversion -I..
+CXXFLAGS ?= -g -std=c++20 -Wall -Werror -Wextra -Wconversion -I..
all: ${TESTS}