Clean up using statements
This commit is contained in:
parent
a8588cd4d3
commit
812f27f43a
11 changed files with 66 additions and 67 deletions
|
|
@ -1,12 +1,12 @@
|
|||
#include "expand_repeats.h"
|
||||
#include <map>
|
||||
|
||||
using std::string;
|
||||
using std::to_string;
|
||||
using std::map;
|
||||
using namespace tree_sitter::rules;
|
||||
|
||||
namespace tree_sitter {
|
||||
using std::string;
|
||||
using std::to_string;
|
||||
using std::map;
|
||||
using namespace rules;
|
||||
|
||||
namespace prepare_grammar {
|
||||
class RepeatExpander : rules::Visitor {
|
||||
public:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue