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,8 +1,8 @@
#include "tree_sitter/compiler.h"
#include "prepare_grammar/prepare_grammar.h"
#include "build_tables/build_tables.h"
#include "generate_code/c_code.h"
#include "prepared_grammar.h"
#include "compiler/prepare_grammar/prepare_grammar.h"
#include "compiler/build_tables/build_tables.h"
#include "compiler/generate_code/c_code.h"
#include "compiler/prepared_grammar.h"
namespace tree_sitter {
std::string compile(const Grammar &grammar, std::string name) {