diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-06-04 17:46:10 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-06-04 17:47:19 +0800 |
commit | 3d0807a9fa2cf26fc750b3eed35036602946ead4 (patch) | |
tree | bd3bfe6bbcc63bb9f4eb0f5970ad8e59ac7fe603 /Compiler.cpp | |
parent | d639c225f21a22dcab34e99b8ef21484365c9193 (diff) | |
download | dexon-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.cpp | 2 |
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; |