aboutsummaryrefslogtreecommitdiffstats
path: root/liblll/Parser.cpp
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-07-30 22:47:55 +0800
committerGitHub <noreply@github.com>2018-07-30 22:47:55 +0800
commit7cf5cd6050c616599d476a865b1fcfb57472ef22 (patch)
tree16d0b81f9ace5fdbc2a9dc21010ca1e89d3b2f6f /liblll/Parser.cpp
parent9d09e21b6c7662ad037de3e14dfc8f72f6d0b274 (diff)
parentc2faed77054c69b8ef35b3e54a2c05acc7e93363 (diff)
downloaddexon-solidity-7cf5cd6050c616599d476a865b1fcfb57472ef22.tar
dexon-solidity-7cf5cd6050c616599d476a865b1fcfb57472ef22.tar.gz
dexon-solidity-7cf5cd6050c616599d476a865b1fcfb57472ef22.tar.bz2
dexon-solidity-7cf5cd6050c616599d476a865b1fcfb57472ef22.tar.lz
dexon-solidity-7cf5cd6050c616599d476a865b1fcfb57472ef22.tar.xz
dexon-solidity-7cf5cd6050c616599d476a865b1fcfb57472ef22.tar.zst
dexon-solidity-7cf5cd6050c616599d476a865b1fcfb57472ef22.zip
Merge pull request #4608 from ethereum/lll-namespace
Replace dev::eth namespace with dev::lll in LLL
Diffstat (limited to 'liblll/Parser.cpp')
-rw-r--r--liblll/Parser.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/liblll/Parser.cpp b/liblll/Parser.cpp
index a3962df4..506553f9 100644
--- a/liblll/Parser.cpp
+++ b/liblll/Parser.cpp
@@ -33,12 +33,12 @@
using namespace std;
using namespace dev;
-using namespace dev::eth;
+using namespace dev::lll;
namespace qi = boost::spirit::qi;
namespace px = boost::phoenix;
namespace sp = boost::spirit;
-void dev::eth::killBigints(sp::utree const& _this)
+void dev::lll::killBigints(sp::utree const& _this)
{
switch (_this.which())
{
@@ -48,7 +48,7 @@ void dev::eth::killBigints(sp::utree const& _this)
}
}
-void dev::eth::debugOutAST(ostream& _out, sp::utree const& _this)
+void dev::lll::debugOutAST(ostream& _out, sp::utree const& _this)
{
switch (_this.which())
{
@@ -74,7 +74,8 @@ void dev::eth::debugOutAST(ostream& _out, sp::utree const& _this)
}
}
-namespace dev { namespace eth {
+namespace dev {
+namespace lll {
namespace parseTreeLLL_ {
template<unsigned N>
@@ -88,11 +89,11 @@ struct tagNode
}}}
-void dev::eth::parseTreeLLL(string const& _s, sp::utree& o_out)
+void dev::lll::parseTreeLLL(string const& _s, sp::utree& o_out)
{
using qi::standard::space;
using qi::standard::space_type;
- using dev::eth::parseTreeLLL_::tagNode;
+ using dev::lll::parseTreeLLL_::tagNode;
using symbol_type = sp::basic_string<std::string, sp::utree_type::symbol_type>;
using it = string::const_iterator;