diff options
-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") { |