Update cpp.md
Some checks failed
CI / linting (push) Has been cancelled

Signed-off-by: Dennis Eichhorn <spl1nes.com@googlemail.com>
This commit is contained in:
Dennis Eichhorn 2024-07-28 03:47:42 +02:00 committed by GitHub
parent a019012178
commit a80df6a645
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -40,12 +40,6 @@ When writing code keep the following topics in mind:
Namespaces must never be globally used. This means for example `use namespace std;` is prohibited and functions from the standard namespace should be prefixed instead `std::`
## Data types
### Unsigned Integer
Be careful when you use unsigned and signed integers. When using unsigned integers the compiler may create additional instructions depending on the situation since it must support integer wrapping.
## Templates
Don't use C++ templates.