meson.build: switch to C++20

This commit is contained in:
Max Kellermann
2022-05-19 09:46:34 +02:00
parent 86e6f4fcc0
commit 0e9e213324
4 changed files with 6 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ Code Style
* indent with tabs (width 8)
* don't write CPP when you can write C++: use inline functions and constexpr instead of macros
* comment your code, document your APIs
* the code should be C++17 compliant, and must compile with :program:`GCC` 8 and :program:`clang` 5
* the code should be C++20 compliant, and must compile with :program:`GCC` 10 and :program:`clang` 11
* all code must be exception-safe
* classes and functions names use CamelCase; variables are lower-case with words separated by underscore