Fix misplaced include and using directive

This commit is contained in:
Max Brunsfeld 2015-03-16 18:33:11 -07:00
parent 044c1edd51
commit c59c98251b
2 changed files with 2 additions and 2 deletions

View file

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

View file

@ -2,10 +2,12 @@
#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::get;
using std::make_tuple;
using std::string;