Make paths explicit in #includes

This commit is contained in:
Max Brunsfeld 2014-03-09 21:37:21 -07:00
parent c0add4d017
commit eb30429700
59 changed files with 191 additions and 188 deletions

View file

@ -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) {};