SF.5: prefer relative import to absolute one (#1944)

Signed-off-by: Daniel Kříž <Daniel.kriz@protonmail.com>
This commit is contained in:
Daniel Kříž
2022-08-08 18:10:57 +02:00
committed by GitHub
parent 1aafa24880
commit 6476b15070

View File

@@ -19263,7 +19263,7 @@ The errors will not be caught until link time for a program calling `bar` or `fo
int foobar(int); int foobar(int);
// foo.cpp: // foo.cpp:
#include <foo.h> #include "foo.h"
void foo(int) { /* ... */ } void foo(int) { /* ... */ }
int bar(double) { /* ... */ } int bar(double) { /* ... */ }