aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorenen92 <92enen@gmail.com>2022-10-17 21:42:23 +0100
committerenen92 <92enen@gmail.com>2022-10-17 21:42:23 +0100
commit6fd9858954aa04dbb367318f20bc31116d5ad363 (patch)
tree4c9b2786963879ac78d4d83a1bc1c0cc8cc8c937 /docs
parent678e3f80cbbfeecbef56e0b0a3d7db4334920f21 (diff)
[Docs] Update codeguidelines to reflect cpp 17 features
Diffstat (limited to 'docs')
-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)**