diff options
author | chriseth <c@ethdev.com> | 2015-06-16 20:58:03 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-06-16 21:09:19 +0800 |
commit | e3597bf21368af07225d7d427105f72b3b19b364 (patch) | |
tree | 345801c644cbe85b32f3acfe7f2b30860c89753f | |
parent | 3ec162e910c34f049332d487d9f07674a42c40aa (diff) | |
download | dexon-solidity-e3597bf21368af07225d7d427105f72b3b19b364.tar.gz dexon-solidity-e3597bf21368af07225d7d427105f72b3b19b364.tar.zst dexon-solidity-e3597bf21368af07225d7d427105f72b3b19b364.zip |
Some changes in libdevcore.
-rw-r--r-- | CodeFragment.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CodeFragment.cpp b/CodeFragment.cpp index 1e776643..b50e316d 100644 --- a/CodeFragment.cpp +++ b/CodeFragment.cpp @@ -196,7 +196,7 @@ void CodeFragment::constructOperation(sp::utree const& _t, CompilerState& _s) { if (_t.size() != 2) error<IncorrectParameterCount>(); - m_asm.append(CodeFragment::compile(asString(contents(firstAsString())), _s).m_asm); + m_asm.append(CodeFragment::compile(contentsString(firstAsString()), _s).m_asm); } else if (us == "SET") { |