aboutsummaryrefslogtreecommitdiffstats
path: root/Compiler.cpp
diff options
context:
space:
mode:
authorLiana Husikyan <liana@ethdev.com>2015-06-04 17:46:10 +0800
committerLiana Husikyan <liana@ethdev.com>2015-06-04 17:47:19 +0800
commit3d0807a9fa2cf26fc750b3eed35036602946ead4 (patch)
treebd3bfe6bbcc63bb9f4eb0f5970ad8e59ac7fe603 /Compiler.cpp
parentd639c225f21a22dcab34e99b8ef21484365c9193 (diff)
downloaddexon-solidity-3d0807a9fa2cf26fc750b3eed35036602946ead4.tar
dexon-solidity-3d0807a9fa2cf26fc750b3eed35036602946ead4.tar.gz
dexon-solidity-3d0807a9fa2cf26fc750b3eed35036602946ead4.tar.bz2
dexon-solidity-3d0807a9fa2cf26fc750b3eed35036602946ead4.tar.lz
dexon-solidity-3d0807a9fa2cf26fc750b3eed35036602946ead4.tar.xz
dexon-solidity-3d0807a9fa2cf26fc750b3eed35036602946ead4.tar.zst
dexon-solidity-3d0807a9fa2cf26fc750b3eed35036602946ead4.zip
fixed assertion
Diffstat (limited to 'Compiler.cpp')
-rw-r--r--Compiler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Compiler.cpp b/Compiler.cpp
index 50fb8e3d..6425367d 100644
--- a/Compiler.cpp
+++ b/Compiler.cpp
@@ -42,7 +42,7 @@ class StackHeightChecker
public:
StackHeightChecker(CompilerContext const& _context):
m_context(_context), stackHeight(m_context.getStackHeight()) {}
- void check() {/* solAssert(m_context.getStackHeight() == stackHeight, "I sense a disturbance in the stack."); */}
+ void check() { solAssert(m_context.getStackHeight() == stackHeight, "I sense a disturbance in the stack."); }
private:
CompilerContext const& m_context;
unsigned stackHeight;