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

@ -4,6 +4,7 @@
#pragma once
#include <assert.h>
#include <string>
class DFA_State;
@ -66,7 +67,7 @@ protected:
static unsigned int transition_counter; // see Xtion()
};
using DigestStr = basic_string<u_char>;
using DigestStr = std::basic_string<u_char>;
class DFA_State_Cache {
public: