From 3317aedff0901e08a8efc8346ad76b184d5d40ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Sun, 17 Mar 2024 12:20:54 +0100 Subject: [PATCH] meson: test with c++26 too The docs say that support is experimental, but it's better for us if we know about any problems early. Header tests pass without any issue with gcc-14.0.1-0.8.fc40.x86_64. --- src/systemd/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/src/systemd/meson.build b/src/systemd/meson.build index b1f4d4e00b4..a91d7064bbe 100644 --- a/src/systemd/meson.build +++ b/src/systemd/meson.build @@ -79,6 +79,7 @@ if cxx_cmd != '' '-std=c++17', '-std=c++20', '-std=c++23', + '-std=c++26', ] if cxx.has_argument(opt) opts += [['c++', opt]]