Remove "using namespace std" from header files

This commit is contained in:
Jon Siwek 2019-10-30 12:26:10 -07:00
parent 13a431f9fb
commit 62161dcc34
18 changed files with 78 additions and 85 deletions

View file

@ -15,7 +15,7 @@ class RuleHdrTest;
class Rule;
typedef PList<Rule> rule_list;
typedef std::map<string, Rule*> rule_dict;
typedef std::map<std::string, Rule*> rule_dict;
class Rule {
public: