Gabriel Dos Reis
Gabriel Dos Reis
Enforced application of rule [Con.1](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rconst-immutable) can have detrimental effects on performance. It can force a copy (more expensive operation in general) when a move (a cheaper operation in general) would...
Consider ``` enum class TestEnum : uint32_t { One, Two, Three }; int main() { TestEnum t { 17 }; // L1 } ``` Prior to C++17, line L1 was...
The document uses the term "member variable" without indication of what it means. The C++ community has been using the term "non-static data member" for over 40 years and that...
Tracking issue for: - [ ] https://github.com/GabrielDosReis/ipr/security/code-scanning/232
Tracking issue for: - [ ] https://github.com/GabrielDosReis/ipr/security/code-scanning/519
Tracking issue for: - [ ] https://github.com/GabrielDosReis/ipr/security/code-scanning/530
Tracking issue for: - [ ] https://github.com/GabrielDosReis/ipr/security/code-scanning/102
Tracking issue for: - [ ] https://github.com/GabrielDosReis/ipr/security/code-scanning/4400
During the review of #30 , @menuet correctly observed there is existing code that violated Core Guidelines [E.14](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Re-exception-types). That should have been caught before it was checked in. Upon further...