Clean up using statements

This commit is contained in:
Max Brunsfeld 2014-02-12 23:06:26 -08:00
parent a8588cd4d3
commit 812f27f43a
11 changed files with 66 additions and 67 deletions

View file

@ -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: