Fix misplaced include and using directive
This commit is contained in:
parent
044c1edd51
commit
c59c98251b
2 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue