Skip to content

Commit 739dc98

Browse files
authored
Merge pull request #1664 from johnmcfarlane/patch-1
Add clarifying example to SF.12
2 parents bd7085e + c5a7718 commit 739dc98

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

CppCoreGuidelines.md

+1
Original file line numberDiff line numberDiff line change
@@ -19306,6 +19306,7 @@ Nevertheless, the guidance is to use the quoted form for including files that ex
1930619306
#include <some_library/common.h> // A file that is not locally relative, included from another library; use the <> form
1930719307
#include "foo.h" // A file locally relative to foo.cpp in the same project, use the "" form
1930819308
#include "foo_utils/utils.h" // A file locally relative to foo.cpp in the same project, use the "" form
19309+
#include <component_b/bar.h> // A file in the same project located via a search path, use the <> form
1930919310

1931019311
##### Note
1931119312

0 commit comments

Comments
 (0)