Fix missing include
This commit is contained in:
parent
aff8bc3266
commit
929897a78e
2 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue