mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-20 11:36:10 +00:00
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 };
This commit is contained in:
parent
ae21b8ee56
commit
0d5b43552d
Notes:
sideshowbarker
2024-07-19 06:04:46 +09:00
Author: https://github.com/emanuele6 Commit: https://github.com/SerenityOS/serenity/commit/0d5b43552d4 Pull-request: https://github.com/SerenityOS/serenity/pull/2414
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue