Closed GravisZro closed 1 year ago
Included files that are relative to the current directory should be included as such: #include "relative_path/file.h"
#include "relative_path/file.h"
Included files that are relative to an included path should be included as such: #include <some_path/file.h>
#include <some_path/file.h>
The fact that they worked is somewhat of a bug but it's bad form for humans in all cases.
Included files that are relative to the current directory should be included as such:
#include "relative_path/file.h"
Included files that are relative to an included path should be included as such:
#include <some_path/file.h>
The fact that they worked is somewhat of a bug but it's bad form for humans in all cases.