From a80df6a645c66998e19e100f90dfc81cc3912208 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 28 Jul 2024 03:47:42 +0200 Subject: [PATCH] Update cpp.md Signed-off-by: Dennis Eichhorn --- standards/cpp.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/standards/cpp.md b/standards/cpp.md index 0a72cc7..c5edf4c 100755 --- a/standards/cpp.md +++ b/standards/cpp.md @@ -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.