diff options
author | chriseth <chris@ethereum.org> | 2017-06-01 21:56:49 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-01 21:56:49 +0800 |
commit | d5408f78ad2089beaabc60e7b876ad1ff0d276a1 (patch) | |
tree | bdb844e0f53d1cf6f8e67b70ae7efc26d25930a9 | |
parent | 40f3e4413b7eb36d32ab314dc1d854d8428116e6 (diff) | |
download | dexon-solidity-d5408f78ad2089beaabc60e7b876ad1ff0d276a1.tar.gz dexon-solidity-d5408f78ad2089beaabc60e7b876ad1ff0d276a1.tar.zst dexon-solidity-d5408f78ad2089beaabc60e7b876ad1ff0d276a1.zip |
Add comma.
-rw-r--r-- | libsolidity/inlineasm/AsmAnalysis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/inlineasm/AsmAnalysis.cpp b/libsolidity/inlineasm/AsmAnalysis.cpp index 8fa72d7e..3edc01ad 100644 --- a/libsolidity/inlineasm/AsmAnalysis.cpp +++ b/libsolidity/inlineasm/AsmAnalysis.cpp @@ -345,7 +345,7 @@ bool AsmAnalyzer::expectExpression(Statement const& _statement) { m_errorReporter.typeError( locationOf(_statement), - "Expected expression to return one item to the stack but did return " + + "Expected expression to return one item to the stack, but did return " + boost::lexical_cast<string>(m_stackHeight - initialHeight) + " items." ); |