Remove unnecessary using statements
This commit is contained in:
parent
2659b15542
commit
62c577af33
1 changed files with 3 additions and 6 deletions
|
|
@ -12,17 +12,14 @@
|
|||
namespace tree_sitter {
|
||||
namespace build_tables {
|
||||
|
||||
using std::move;
|
||||
using std::vector;
|
||||
using std::set;
|
||||
using std::find;
|
||||
using std::get;
|
||||
using std::move;
|
||||
using std::pair;
|
||||
using std::tuple;
|
||||
using std::set;
|
||||
using std::unordered_map;
|
||||
using std::make_tuple;
|
||||
using std::vector;
|
||||
using rules::Symbol;
|
||||
using rules::NONE;
|
||||
|
||||
static vector<Production> inline_production(const ParseItem &item, const SyntaxGrammar &grammar) {
|
||||
vector<Production> result;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue