Skip to content

Commit

Permalink
Change CODINGSTYLE.md to C++17
Browse files Browse the repository at this point in the history
  • Loading branch information
MatusGuy authored Jul 10, 2023
1 parent 7439350 commit f0ac02c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CODINGSTYLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

## Language

C++14 is the main langauge used for this project. GCC, Clang and MSVC are supported.
C++17 is the main langauge used for this project. GCC, Clang and MSVC are supported.

For better backward compatibilty with older compiler, namely gcc5,
some C++14 features are restricted:
some C++17 features are restricted:

* generic lambda functions are not allowed, e.g. `[](auto foo){}`
* tuple constructors have to be explicit, e.g. `std::tuple<int, int>{5, 6}`, not `{5, 6}`
Expand Down

0 comments on commit f0ac02c

Please sign in to comment.