diff options
| author | Karl-Johan Alm <[email protected]> | 2017-01-04 14:42:14 +0900 |
|---|---|---|
| committer | Karl-Johan Alm <[email protected]> | 2017-03-08 08:08:17 -0800 |
| commit | 8cbfc4e47216cbf9e3e758604e23951f40d76cf9 (patch) | |
| tree | 4c4dda796b108f27286cd73b63307b5b4109a53d /src/script/script.cpp | |
| parent | Refactor: Remove using namespace <xxx> from rpc/ (diff) | |
| download | discoin-8cbfc4e47216cbf9e3e758604e23951f40d76cf9.tar.xz discoin-8cbfc4e47216cbf9e3e758604e23951f40d76cf9.zip | |
Refactor: Remove using namespace <xxx> from script/
Diffstat (limited to 'src/script/script.cpp')
| -rw-r--r-- | src/script/script.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/script/script.cpp b/src/script/script.cpp index 01180a7d6..70eb8a139 100644 --- a/src/script/script.cpp +++ b/src/script/script.cpp @@ -8,8 +8,6 @@ #include "tinyformat.h" #include "utilstrencodings.h" -using namespace std; - const char* GetOpName(opcodetype opcode) { switch (opcode) @@ -186,7 +184,7 @@ unsigned int CScript::GetSigOpCount(const CScript& scriptSig) const // get the last item that the scriptSig // pushes onto the stack: const_iterator pc = scriptSig.begin(); - vector<unsigned char> vData; + std::vector<unsigned char> vData; while (pc < scriptSig.end()) { opcodetype opcode; |