From cdb93d0c99444b7d2c2a00b4264aec5aee4676ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joshua=20Vanda=C3=ABle?= Date: Tue, 14 Jul 2026 14:51:38 +0200 Subject: [PATCH] Contributing.md: Update C++20 mentions to C++23 --- Contributing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Contributing.md b/Contributing.md index 49496cf222..1441a22245 100644 --- a/Contributing.md +++ b/Contributing.md @@ -195,7 +195,7 @@ Summary: - [Classes and Structs](#cpp-code-classes-and-structs) ## General -- The codebase currently uses C++20, though not all compilers support all C++20 features. +- The codebase currently uses C++23, though compiler support for newer language features varies. - See CMakeLists.txt "Enforce minimum compiler versions" for the currently supported compilers. - Use the [nullptr](https://en.cppreference.com/w/cpp/language/nullptr) type over the macro `NULL`. - If a [range-based for loop](https://en.cppreference.com/w/cpp/language/range-for) can be used instead of container iterators, use it.