diff --git a/src/compiler/build_tables/build_parse_table.cc b/src/compiler/build_tables/build_parse_table.cc index 47b61218..93ba1df8 100644 --- a/src/compiler/build_tables/build_parse_table.cc +++ b/src/compiler/build_tables/build_parse_table.cc @@ -1,4 +1,3 @@ -#include #include #include #include @@ -17,7 +16,6 @@ namespace tree_sitter { namespace build_tables { -using std::find; using std::get; using std::pair; using std::vector; diff --git a/src/compiler/build_tables/parse_conflict_manager.cc b/src/compiler/build_tables/parse_conflict_manager.cc index f6341a84..21ebaa13 100644 --- a/src/compiler/build_tables/parse_conflict_manager.cc +++ b/src/compiler/build_tables/parse_conflict_manager.cc @@ -2,10 +2,12 @@ #include "compiler/parse_table.h" #include "compiler/rules/built_in_symbols.h" #include +#include namespace tree_sitter { namespace build_tables { +using std::find; using std::get; using std::make_tuple; using std::string;