diff options
author | chriseth <c@ethdev.com> | 2016-04-07 02:55:46 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-04-07 02:56:00 +0800 |
commit | f227050c203fd0da70fcefbbecc922fd16045aa6 (patch) | |
tree | 40ad7d2e00f051368349bdfc017a0d4b455d8313 /lllc | |
parent | 193b1c940ce3e21d52e2cbdd253c1d7cb820fa06 (diff) | |
download | dexon-solidity-f227050c203fd0da70fcefbbecc922fd16045aa6.tar dexon-solidity-f227050c203fd0da70fcefbbecc922fd16045aa6.tar.gz dexon-solidity-f227050c203fd0da70fcefbbecc922fd16045aa6.tar.bz2 dexon-solidity-f227050c203fd0da70fcefbbecc922fd16045aa6.tar.lz dexon-solidity-f227050c203fd0da70fcefbbecc922fd16045aa6.tar.xz dexon-solidity-f227050c203fd0da70fcefbbecc922fd16045aa6.tar.zst dexon-solidity-f227050c203fd0da70fcefbbecc922fd16045aa6.zip |
Make solidity independent from ethcore.
Diffstat (limited to 'lllc')
-rw-r--r-- | lllc/main.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lllc/main.cpp b/lllc/main.cpp index 2c3b6a64..a4c92d67 100644 --- a/lllc/main.cpp +++ b/lllc/main.cpp @@ -26,7 +26,6 @@ #include <libdevcore/CommonIO.h> #include <libdevcore/CommonData.h> #include <libevmasm/Instruction.h> -#include "ethereum/BuildInfo.h" using namespace std; using namespace dev; using namespace dev::solidity; @@ -48,9 +47,8 @@ void help() void version() { - cout << "LLLC, the Lovely Little Language Compiler " << dev::Version << endl; + cout << "LLLC, the Lovely Little Language Compiler " << endl; cout << " By Gav Wood, (c) 2014." << endl; - cout << "Build: " << DEV_QUOTED(ETH_BUILD_PLATFORM) << "/" << DEV_QUOTED(ETH_BUILD_TYPE) << endl; exit(0); } |