Make paths explicit in #includes
This commit is contained in:
parent
c0add4d017
commit
eb30429700
59 changed files with 191 additions and 188 deletions
|
|
@ -1,10 +1,10 @@
|
|||
#include "string.h"
|
||||
#include "visitor.h"
|
||||
|
||||
using std::string;
|
||||
using std::hash;
|
||||
#include "compiler/rules/string.h"
|
||||
#include "compiler/rules/visitor.h"
|
||||
|
||||
namespace tree_sitter {
|
||||
using std::string;
|
||||
using std::hash;
|
||||
|
||||
namespace rules {
|
||||
String::String(string value) : value(value) {};
|
||||
|
||||
|
|
@ -29,4 +29,4 @@ namespace tree_sitter {
|
|||
visitor.visit(this);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue