aboutsummaryrefslogtreecommitdiffstats
path: root/LValue.cpp
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2015-07-04 00:15:05 +0800
committerchriseth <c@ethdev.com>2015-07-04 00:15:05 +0800
commitaa6182ab87989ed50df2ec779237a2b708ccfd12 (patch)
tree67985eff7fa3a54989a1db19fdd65e2557351688 /LValue.cpp
parente2d6e34f9c37488179ba5e3e9ae5dbe106bd57f0 (diff)
downloaddexon-solidity-aa6182ab87989ed50df2ec779237a2b708ccfd12.tar
dexon-solidity-aa6182ab87989ed50df2ec779237a2b708ccfd12.tar.gz
dexon-solidity-aa6182ab87989ed50df2ec779237a2b708ccfd12.tar.bz2
dexon-solidity-aa6182ab87989ed50df2ec779237a2b708ccfd12.tar.lz
dexon-solidity-aa6182ab87989ed50df2ec779237a2b708ccfd12.tar.xz
dexon-solidity-aa6182ab87989ed50df2ec779237a2b708ccfd12.tar.zst
dexon-solidity-aa6182ab87989ed50df2ec779237a2b708ccfd12.zip
Style and some assertion messages.
Diffstat (limited to 'LValue.cpp')
-rw-r--r--LValue.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/LValue.cpp b/LValue.cpp
index 40944663..7b5879e4 100644
--- a/LValue.cpp
+++ b/LValue.cpp
@@ -294,7 +294,7 @@ void StorageItem::storeValue(Type const& _sourceType, SourceLocation const& _loc
else if (sourceType.getSizeOnStack() >= 1)
{
// remove the source ref
- solAssert(sourceStackSize <= 2, "");
+ solAssert(sourceStackSize <= 2, "Invalid stack size.");
m_context << eth::swapInstruction(sourceStackSize);
if (sourceStackSize == 2)
m_context << eth::Instruction::POP;