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 | 6ff57fe0759d13a97346cf5590f57ad729cbbae7 (patch) | |
tree | a17898b0a1cefdf93491806243c4b0e8504833a0 /Compiler.cpp | |
parent | 00caaf53d28976ed276d9d2fe7a54c07ba92b002 (diff) | |
download | dexon-solidity-6ff57fe0759d13a97346cf5590f57ad729cbbae7.tar.gz dexon-solidity-6ff57fe0759d13a97346cf5590f57ad729cbbae7.tar.zst dexon-solidity-6ff57fe0759d13a97346cf5590f57ad729cbbae7.zip |
Project-wide reorganisation of namespaces.
Diffstat (limited to 'Compiler.cpp')
-rw-r--r-- | Compiler.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Compiler.cpp b/Compiler.cpp index ebe2638b..389c10be 100644 --- a/Compiler.cpp +++ b/Compiler.cpp @@ -25,9 +25,10 @@ #include "CodeFragment.h" using namespace std; -using namespace eth; +using namespace dev; +using namespace dev::eth; -bytes eth::compileLLL(string const& _src, bool _opt, vector<string>* _errors) +bytes dev::eth::compileLLL(string const& _src, bool _opt, vector<string>* _errors) { try { @@ -52,7 +53,7 @@ bytes eth::compileLLL(string const& _src, bool _opt, vector<string>* _errors) return bytes(); } -std::string eth::compileLLLToAsm(std::string const& _src, bool _opt, std::vector<std::string>* _errors) +std::string dev::eth::compileLLLToAsm(std::string const& _src, bool _opt, std::vector<std::string>* _errors) { try { @@ -76,7 +77,7 @@ std::string eth::compileLLLToAsm(std::string const& _src, bool _opt, std::vector return string(); } -string eth::parseLLL(string const& _src) +string dev::eth::parseLLL(string const& _src) { sp::utree o; try |