Skip to content

Commit 719e454

Browse files
mizdebskmkoncek
authored andcommitted
Use quotes for local project header includes
Replace angle brackets <...> with quotes "..." for project headers to improve compatibility with IDEs and tooling. While both forms are valid, many tools and IDEs treat quoted includes as local files, enabling better indexing, navigation, and refactoring support.
1 parent af21fda commit 719e454

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/jurand.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include <utility>
33
#include <atomic>
44

5-
#include <java_symbols.hpp>
5+
#include "java_symbols.hpp"
66

77
using namespace java_symbols;
88

src/jurand_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <iostream>
22
#include <sstream>
33

4-
#include <java_symbols.hpp>
4+
#include "java_symbols.hpp"
55

66
using namespace java_symbols;
77

0 commit comments

Comments
 (0)