Make paths explicit in #includes
This commit is contained in:
parent
c0add4d017
commit
eb30429700
59 changed files with 191 additions and 188 deletions
|
|
@ -1,11 +1,11 @@
|
|||
#include "symbol.h"
|
||||
#include "visitor.h"
|
||||
#include "compiler/rules/symbol.h"
|
||||
#include <map>
|
||||
|
||||
using std::string;
|
||||
using std::hash;
|
||||
#include "compiler/rules/visitor.h"
|
||||
|
||||
namespace tree_sitter {
|
||||
using std::string;
|
||||
using std::hash;
|
||||
|
||||
namespace rules {
|
||||
Symbol::Symbol(const std::string &name) : name(name), type(SymbolTypeNormal) {};
|
||||
Symbol::Symbol(const std::string &name, SymbolType type) : name(name), type(type) {};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue