From abed1970b59489b825d1315834e9b25252d462fa Mon Sep 17 00:00:00 2001 From: Andrew Pardoe Date: Wed, 14 Oct 2015 14:19:24 -0700 Subject: [PATCH] Update tag in I4 based on Issue #329 --- CppCoreGuidelines.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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