mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2025-12-17 12:44:42 +03:00
SF.5: prefer relative import to absolute one (#1944)
Signed-off-by: Daniel Kříž <Daniel.kriz@protonmail.com>
This commit is contained in:
@@ -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) { /* ... */ }
|
||||||
|
|||||||
Reference in New Issue
Block a user