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,10 +1,10 @@
#include "rule.h"
#include "compiler/rules/rule.h"
#include <set>
using std::ostream;
using std::string;
namespace tree_sitter {
using std::ostream;
using std::string;
namespace rules {
bool Rule::operator!=(const Rule &other) const {
return !this->operator==(other);