Add note about const usage in coding style

This commit is contained in:
David Capello 2021-08-27 17:42:44 -03:00
parent 33d0187dab
commit 6d67d91335

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: