diff options
author | Gav Wood <i@gavwood.com> | 2014-09-05 23:09:58 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2014-09-05 23:09:58 +0800 |
commit | 37def1ca62d84084063b16e2fe860e70f7260156 (patch) | |
tree | 5210dae003bdddd7f158e0519724619f54f20284 | |
parent | 5c559038083caf3d145277773c0f3715e94d3d3c (diff) | |
download | dexon-solidity-37def1ca62d84084063b16e2fe860e70f7260156.tar.gz dexon-solidity-37def1ca62d84084063b16e2fe860e70f7260156.tar.zst dexon-solidity-37def1ca62d84084063b16e2fe860e70f7260156.zip |
Project-wide reorganisation of namespaces.
-rw-r--r-- | main.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -28,7 +28,8 @@ #include <libevmface/Instruction.h> #include "BuildInfo.h" using namespace std; -using namespace eth; +using namespace dev; +using namespace dev::eth; void help() { @@ -46,9 +47,9 @@ void help() void version() { - cout << "LLLC, the Lovely Little Language Compiler " << eth::EthVersion << endl; + cout << "LLLC, the Lovely Little Language Compiler " << dev::Version << endl; cout << " By Gav Wood, (c) 2014." << endl; - cout << "Build: " << ETH_QUOTED(ETH_BUILD_PLATFORM) << "/" << ETH_QUOTED(ETH_BUILD_TYPE) << endl; + cout << "Build: " << DEV_QUOTED(ETH_BUILD_PLATFORM) << "/" << DEV_QUOTED(ETH_BUILD_TYPE) << endl; exit(0); } |