From c5c1d0b460557663c245673f489c8268ae25b058 Mon Sep 17 00:00:00 2001 From: Marcel Jacobse <44684927+mjacobse@users.noreply.github.com> Date: Sun, 29 Oct 2023 21:18:54 +0100 Subject: [PATCH] Use C++11 standard for Meson With ebbce3e2 the build should now work with C++11, see #166 --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index e4668563..6f35259f 100644 --- a/meson.build +++ b/meson.build @@ -10,7 +10,7 @@ project( 'default_library=shared', 'warning_level=0', 'c_std=c99', - 'cpp_std=c++17', + 'cpp_std=c++11', ], )