From 129537c64610648edf26af0741f5edc717f3e9ee Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 28 Jul 2024 03:40:26 +0200 Subject: [PATCH] Update cpp.md Signed-off-by: Dennis Eichhorn --- standards/cpp.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/standards/cpp.md b/standards/cpp.md index a147100..f9415e0 100755 --- a/standards/cpp.md +++ b/standards/cpp.md @@ -28,6 +28,10 @@ When writing code keep the following topics in mind: * Array of Structs vs Struct of Arrays * SIMD * Choosing correct data types + * Data Type Sizes (e.g. 32 bit vs 64 bit) + * Containers (e.g. arrays vs vectors) + * Signed vs unsigned +* Threading ## Namespace