Skip to content

Commit

Permalink
Update cpp.md
Browse files Browse the repository at this point in the history
Signed-off-by: Dennis Eichhorn <spl1nes.com@googlemail.com>
  • Loading branch information
spl1nes authored Jul 28, 2024
1 parent a019012 commit a80df6a
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions standards/cpp.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit a80df6a

Please sign in to comment.