From 518c0d102f34e898c07d7463729da4bc5d0f75ee Mon Sep 17 00:00:00 2001 From: apenn-msft <62863214+apenn-msft@users.noreply.github.com> Date: Tue, 10 Oct 2023 16:54:53 -0700 Subject: [PATCH] fix warnings --- CppCoreGuidelines.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 27f362776..fb9ce9fd3 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -19648,12 +19648,13 @@ To maximize the portability of `#include` directives across compilers, guidance // good examples #include #include - #include "utils/utils.h" + #include "foo_utils/utils.h" // bad examples // #include // the standard library defines a header identified as , not // #include // the standard library defines a header identified as , not - // #include "utils\utils.h" // may not work if `\u` is interpreted as an escape sequence, or on a system where `\` is not a valid path separator + // #include "foo_utils\utils.h" // may not work if `\u` is interpreted as an escape sequence, or on a system where `\` is not a valid path separator + // #include "Foo_Utils/Utils.H" // the header file as it exists on the file system is "foo_utils/utils.h" ##### Enforcement