From cfa7520a223e004587050a9f53d56fbffdec2df8 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Mon, 6 Apr 2026 00:57:24 +0300 Subject: [PATCH] Documentation: Update to C++20 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit libcamera has switched to C++20, update the coding style documentation that still mentions C++17. Signed-off-by: Laurent Pinchart Reviewed-by: Jacopo Mondi Reviewed-by: Barnabás Pőcze --- Documentation/coding-style.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/coding-style.rst b/Documentation/coding-style.rst index e0864b78..5b90a43a 100644 --- a/Documentation/coding-style.rst +++ b/Documentation/coding-style.rst @@ -105,7 +105,7 @@ headers, and with double quotes for internal libcamera headers. C++ Specific Rules ------------------ -The code shall be implemented in C++17, with the following caveats: +The code shall be implemented in C++20, with the following caveats: * Type inference (auto and decltype) shall be used with caution, to avoid drifting towards an untyped language.