From 6476b15070cfa52d3762ca300fc6cbc737acf9d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20K=C5=99=C3=AD=C5=BE?= <40214753+DanielKriz@users.noreply.github.com> Date: Mon, 8 Aug 2022 18:10:57 +0200 Subject: [PATCH] SF.5: prefer relative import to absolute one (#1944) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Daniel Kříž --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index fefd7bb..e7d75a7 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -19263,7 +19263,7 @@ The errors will not be caught until link time for a program calling `bar` or `fo int foobar(int); // foo.cpp: - #include + #include "foo.h" void foo(int) { /* ... */ } int bar(double) { /* ... */ }