From 61cdce115ef703460cd40aa4c6cacb42077b9dcf Mon Sep 17 00:00:00 2001 From: hsutter Date: Thu, 11 Oct 2018 12:09:41 -0700 Subject: [PATCH] Improved description of F.3 example The example in F.3 is not really long, but it is complex --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index a7be0cd..1ac7031 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2485,7 +2485,7 @@ Consider: return finalize(intermediate, 0.); } -This is too complex (and long). +This is too complex. How would you know if all possible alternatives have been correctly handled? Yes, it breaks other rules also.