aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/CODE_GUIDELINES.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/CODE_GUIDELINES.md b/docs/CODE_GUIDELINES.md
index 57b3ed7941..8cd9a1800d 100644
--- a/docs/CODE_GUIDELINES.md
+++ b/docs/CODE_GUIDELINES.md
@@ -70,7 +70,7 @@ Conventions can be bent or broken in the interest of making code more readable a
## 2. Language standard
-We currently target the C++14 language standard. Do use C++14 features when possible. Do not use C++17 features.
+We currently target the C++17 language standard. Do use C++17 features when possible (and supported by all target platforms). Do not use C++20 features.
**[back to top](#table-of-contents)**