diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index e5edab87a..f015e500f 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -19306,6 +19306,7 @@ Nevertheless, the guidance is to use the quoted form for including files that ex #include // 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 // A file in the same project located via a search path, use the <> form ##### Note