diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-07-28 06:16:53 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-07-28 19:00:36 +0800 |
commit | 7c509137cfea7373628f74d8c4fd94e78eb26cbb (patch) | |
tree | f04f3e4e04e15a087d0a97f24ed8284095ca2be3 /test/liblll/Parser.cpp | |
parent | 705cbbc19a96c465b06973cd832c3674b956eba8 (diff) | |
download | dexon-solidity-7c509137cfea7373628f74d8c4fd94e78eb26cbb.tar.gz dexon-solidity-7c509137cfea7373628f74d8c4fd94e78eb26cbb.tar.zst dexon-solidity-7c509137cfea7373628f74d8c4fd94e78eb26cbb.zip |
Replace dev::eth namespace with dev::lll in LLL
Diffstat (limited to 'test/liblll/Parser.cpp')
-rw-r--r-- | test/liblll/Parser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/liblll/Parser.cpp b/test/liblll/Parser.cpp index fc977b81..d343aab1 100644 --- a/test/liblll/Parser.cpp +++ b/test/liblll/Parser.cpp @@ -39,13 +39,13 @@ namespace bool successParse(std::string const& _source) { - std::string ret = eth::parseLLL(_source); + std::string ret = lll::parseLLL(_source); return ret.size() != 0; } std::string parse(std::string const& _source) { - return eth::parseLLL(_source); + return lll::parseLLL(_source); } } |