diff --git a/src/compiler/build_tables/build_parse_table.cc b/src/compiler/build_tables/build_parse_table.cc index ea90e05d..6becbd04 100644 --- a/src/compiler/build_tables/build_parse_table.cc +++ b/src/compiler/build_tables/build_parse_table.cc @@ -1,3 +1,4 @@ +#include #include #include #include @@ -16,6 +17,7 @@ namespace tree_sitter { namespace build_tables { +using std::find; using std::pair; using std::vector; using std::set; diff --git a/src/compiler/build_tables/parse_conflict_manager.cc b/src/compiler/build_tables/parse_conflict_manager.cc index 24c97da3..a24e9bf6 100644 --- a/src/compiler/build_tables/parse_conflict_manager.cc +++ b/src/compiler/build_tables/parse_conflict_manager.cc @@ -2,12 +2,10 @@ #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::pair; using std::vector;