From 66a1bc8e589e278825e7c262bac836770d131c57 Mon Sep 17 00:00:00 2001 From: Don Pham Date: Tue, 22 Sep 2015 11:43:40 -0400 Subject: [PATCH] Fix example in SF.4 --- CppCoreGuidelines.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 9794ac8..a9f0269 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -10411,7 +10411,7 @@ The user of `bar` cannot know if the interface used is complete and correct. At **Example**: #include - #include + #include #include // ... my code here ... @@ -10419,11 +10419,12 @@ The user of `bar` cannot know if the interface used is complete and correct. At **Example, bad**: #include - #include - #include // ... my code here ... + #include + #include + **Note**: This applies to both `.h` and `.cpp` files. **Exception**: Are there any in good code?