Fix missing include

This commit is contained in:
Max Brunsfeld 2015-07-08 19:18:59 -07:00
parent aff8bc3266
commit 929897a78e
2 changed files with 2 additions and 2 deletions

View file

@ -1,3 +1,4 @@
#include <algorithm>
#include <map>
#include <set>
#include <string>
@ -16,6 +17,7 @@
namespace tree_sitter {
namespace build_tables {
using std::find;
using std::pair;
using std::vector;
using std::set;

View file

@ -2,12 +2,10 @@
#include "compiler/parse_table.h"
#include "compiler/rules/built_in_symbols.h"
#include <utility>
#include <algorithm>
namespace tree_sitter {
namespace build_tables {
using std::find;
using std::pair;
using std::vector;