From 2a1c75504c789b686b5b37ed8729f632ec81d2f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barnab=C3=A1s=20P=C5=91cze?= Date: Fri, 6 Dec 2024 18:51:20 +0100 Subject: [PATCH] meson: Switch to C++20 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Switch to using the C++20 standard when compiling libcamera. Signed-off-by: Barnabás Pőcze Reviewed-by: Naushir Patuck Acked-by: Kieran Bingham Reviewed-by: Laurent Pinchart --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index fa38fa2c..2e2a27ef 100644 --- a/meson.build +++ b/meson.build @@ -6,7 +6,7 @@ project('libcamera', 'c', 'cpp', default_options : [ 'werror=true', 'warning_level=2', - 'cpp_std=c++17', + 'cpp_std=c++20', ], license : 'LGPL 2.1+')