Add note about const usage in coding style

master
David Capello 2021-08-27 17:42:44 -03:00
parent 33d0187dab
commit 6d67d91335
1 changed files with 4 additions and 0 deletions

View File

@ -126,6 +126,10 @@ protected:
};
```
## Const
* [NL.26: Use conventional const notation](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#nl26-use-conventional-const-notation)
## C++11
We are using some modern C++ (C++11, C++14, etc.) features, mainly: