diff options
Diffstat (limited to 'liblll/CodeFragment.h')
-rw-r--r-- | liblll/CodeFragment.h | 6 |
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; }; |