summaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorEmanuele Torre <torreemanuele6@gmail.com>2020-05-27 06:20:28 +0200
committerAndreas Kling <kling@serenityos.org>2020-05-27 11:22:14 +0200
commit0d5b43552d4f049b2d353378e60bba8140f3c68b (patch)
tree398eeadcc0d60a20694c79dde35c3bbc9f730fd4 /CONTRIBUTING.md
parentae21b8ee566b171938ca132572d0373148b83f2f (diff)
downloadserenity-0d5b43552d4f049b2d353378e60bba8140f3c68b.zip
Meta: Update C++ standard to C++20 in CONTRIBUTING.md
We are compiling with `-std=c++2a` and we are using some C++20 features, e.g. in Kernel/VM/Region.h bool m_shared : 1 { false }; bool m_user_accessible : 1 { false }; bool m_cacheable : 1 { false }; bool m_stack : 1 { false }; bool m_mmap : 1 { false };
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index fdedb4e6be..56fc53794e 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -33,7 +33,7 @@ Nobody is perfect, and sometimes we mess things up. That said, here are some goo
**Do:**
-* Write in idiomatic Serenity C++17, using the `AK` containers in all code.
+* Write in idiomatic Serenity C++20, using the `AK` containers in all code.
* Conform to the project coding style found in [CodingStyle.md](https://github.com/SerenityOS/serenity/blob/master/Documentation/CodingStyle.md). Please use `clang-format` (version 10 or later) to automatically format C++ files.
* Choose expressive variable, function and class names. Make it as obvious as possible what the code is doing.
* Split your changes into separate, atomic commits.