aboutsummaryrefslogtreecommitdiffstats
path: root/liblll/Compiler.cpp
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2018-07-28 06:16:53 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-07-28 19:00:36 +0800
commit7c509137cfea7373628f74d8c4fd94e78eb26cbb (patch)
treef04f3e4e04e15a087d0a97f24ed8284095ca2be3 /liblll/Compiler.cpp
parent705cbbc19a96c465b06973cd832c3674b956eba8 (diff)
downloaddexon-solidity-7c509137cfea7373628f74d8c4fd94e78eb26cbb.tar
dexon-solidity-7c509137cfea7373628f74d8c4fd94e78eb26cbb.tar.gz
dexon-solidity-7c509137cfea7373628f74d8c4fd94e78eb26cbb.tar.bz2
dexon-solidity-7c509137cfea7373628f74d8c4fd94e78eb26cbb.tar.lz
dexon-solidity-7c509137cfea7373628f74d8c4fd94e78eb26cbb.tar.xz
dexon-solidity-7c509137cfea7373628f74d8c4fd94e78eb26cbb.tar.zst
dexon-solidity-7c509137cfea7373628f74d8c4fd94e78eb26cbb.zip
Replace dev::eth namespace with dev::lll in LLL
Diffstat (limited to 'liblll/Compiler.cpp')
-rw-r--r--liblll/Compiler.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/liblll/Compiler.cpp b/liblll/Compiler.cpp
index f2c1b0be..657f58b8 100644
--- a/liblll/Compiler.cpp
+++ b/liblll/Compiler.cpp
@@ -26,9 +26,9 @@
using namespace std;
using namespace dev;
-using namespace dev::eth;
+using namespace dev::lll;
-bytes dev::eth::compileLLL(string const& _src, dev::solidity::EVMVersion _evmVersion, bool _opt, std::vector<std::string>* _errors, dev::eth::ReadCallback const& _readFile)
+bytes dev::lll::compileLLL(string const& _src, dev::solidity::EVMVersion _evmVersion, bool _opt, std::vector<std::string>* _errors, ReadCallback const& _readFile)
{
try
{
@@ -66,7 +66,7 @@ bytes dev::eth::compileLLL(string const& _src, dev::solidity::EVMVersion _evmVer
return bytes();
}
-std::string dev::eth::compileLLLToAsm(std::string const& _src, EVMVersion _evmVersion, bool _opt, std::vector<std::string>* _errors, ReadCallback const& _readFile)
+std::string dev::lll::compileLLLToAsm(std::string const& _src, EVMVersion _evmVersion, bool _opt, std::vector<std::string>* _errors, ReadCallback const& _readFile)
{
try
{
@@ -103,7 +103,7 @@ std::string dev::eth::compileLLLToAsm(std::string const& _src, EVMVersion _evmVe
return string();
}
-string dev::eth::parseLLL(string const& _src)
+string dev::lll::parseLLL(string const& _src)
{
sp::utree o;