mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2024-03-22 13:30:58 +08:00
Merge pull request #1664 from johnmcfarlane/patch-1
Add clarifying example to SF.12
This commit is contained in:
commit
739dc98dff
|
@ -19306,6 +19306,7 @@ Nevertheless, the guidance is to use the quoted form for including files that ex
|
|||
#include <some_library/common.h> // A file that is not locally relative, included from another library; use the <> form
|
||||
#include "foo.h" // A file locally relative to foo.cpp in the same project, use the "" form
|
||||
#include "foo_utils/utils.h" // A file locally relative to foo.cpp in the same project, use the "" form
|
||||
#include <component_b/bar.h> // A file in the same project located via a search path, use the <> form
|
||||
|
||||
##### Note
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user