Remove "using namespace" from header and move Instruction to dev::eth.

This commit is contained in:
chriseth
2019-03-28 13:48:11 +01:00
parent 77b8b4874d
commit 2308904f68
66 changed files with 190 additions and 220 deletions
+1 -2
View File
@@ -31,7 +31,6 @@
using namespace std;
using namespace dev;
using namespace dev::solidity;
using namespace dev::lll;
static string const VersionString =
@@ -130,7 +129,7 @@ int main(int argc, char** argv)
}
else if (mode == Disassemble)
{
cout << disassemble(fromHex(src)) << endl;
cout << dev::eth::disassemble(fromHex(src)) << endl;
}
else if (mode == Binary || mode == Hex)
{