From 929897a78ec66567a8a70c5663f278f5b5ad3a70 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Wed, 8 Jul 2015 19:18:59 -0700 Subject: [PATCH] Fix missing include --- src/compiler/build_tables/build_parse_table.cc | 2 ++ src/compiler/build_tables/parse_conflict_manager.cc | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) 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;