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?