From c1a1bbd415dc6a09b6ed49a845132d115f5ed702 Mon Sep 17 00:00:00 2001 From: John Sallay Date: Fri, 27 Sep 2024 21:01:07 -0400 Subject: [PATCH] Only require c++20. Signed-off-by: John Sallay --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index b81d7b8..1dfae18 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project('pmt', 'cpp', version : '0.0.2', meson_version: '>=0.63.0', license : 'GPLv3', - default_options : ['cpp_std=c++23', 'warning_level=3']) + default_options : ['cpp_std=c++20', 'warning_level=3']) cc = meson.get_compiler('cpp') warnings_as_errors = get_option('warnings_as_errors') # Define this option in your meson_options.txt