aboutsummaryrefslogtreecommitdiffstats
path: root/liblll/CodeFragment.h
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/CodeFragment.h
parent705cbbc19a96c465b06973cd832c3674b956eba8 (diff)
downloaddexon-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 'liblll/CodeFragment.h')
-rw-r--r--liblll/CodeFragment.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/liblll/CodeFragment.h b/liblll/CodeFragment.h
index e5cac34e..e6e4d3b6 100644
--- a/liblll/CodeFragment.h
+++ b/liblll/CodeFragment.h
@@ -31,7 +31,7 @@ namespace sp = boost::spirit;
namespace dev
{
-namespace eth
+namespace lll
{
struct CompilerState;
@@ -47,7 +47,7 @@ public:
static CodeFragment compile(std::string const& _src, CompilerState& _s, ReadCallback const& _readFile);
/// Consolidates data and compiles code.
- Assembly& assembly(CompilerState const& _cs) { finalise(_cs); return m_asm; }
+ eth::Assembly& assembly(CompilerState const& _cs) { finalise(_cs); return m_asm; }
private:
void finalise(CompilerState const& _cs);
@@ -61,7 +61,7 @@ private:
void constructOperation(sp::utree const& _t, CompilerState& _s);
bool m_finalised = false;
- Assembly m_asm;
+ eth::Assembly m_asm;
ReadCallback m_readFile;
};