diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 8a79563..6a06136 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -1045,7 +1045,9 @@ Very hard in general ### I.4: Make interfaces precisely and strongly typed -Reason: Types are the simplest and best documentation, have well-defined meaning, and are guaranteed to be checked at compile time. +##### Reason + +Types are the simplest and best documentation, have well-defined meaning, and are guaranteed to be checked at compile time. Also, precisely typed code is often optimized better. ##### Example, don't