summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Vandaƫle <joshua@vandaele.software>2026-07-14 14:51:38 +0200
committerJoshua Vandaƫle <joshua@vandaele.software>2026-07-14 14:51:38 +0200
commitcdb93d0c99444b7d2c2a00b4264aec5aee4676ca (patch)
tree20c4a3b80d63663a2549fbe59672527870a8df24
parent09fbe2a93000127d56dde527179e1b41ba804099 (diff)
Contributing.md: Update C++20 mentions to C++23
-rw-r--r--Contributing.md2
1 files changed, 1 insertions, 1 deletions
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)
## <a name="cpp-code-general"></a>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.