diff options
author | Denton Liu <liu.denton+github@gmail.com> | 2016-08-06 04:53:47 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-08-11 22:15:59 +0800 |
commit | 5ee846e39fb69a07a297a1af828e1b11c237f83a (patch) | |
tree | dac092ecb7e3156a9fc869feeecec90c0b94cac4 /libsolidity/codegen/ExpressionCompiler.cpp | |
parent | 0988eba4fe8dd5f0630cf509663887d8f135fe5e (diff) | |
download | dexon-solidity-5ee846e39fb69a07a297a1af828e1b11c237f83a.tar.gz dexon-solidity-5ee846e39fb69a07a297a1af828e1b11c237f83a.tar.zst dexon-solidity-5ee846e39fb69a07a297a1af828e1b11c237f83a.zip |
Remove After from ExpressionCompiler
Diffstat (limited to 'libsolidity/codegen/ExpressionCompiler.cpp')
-rw-r--r-- | libsolidity/codegen/ExpressionCompiler.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libsolidity/codegen/ExpressionCompiler.cpp b/libsolidity/codegen/ExpressionCompiler.cpp index 80009a90..1d574556 100644 --- a/libsolidity/codegen/ExpressionCompiler.cpp +++ b/libsolidity/codegen/ExpressionCompiler.cpp @@ -297,9 +297,6 @@ bool ExpressionCompiler::visit(UnaryOperation const& _unaryOperation) case Token::BitNot: // ~ m_context << Instruction::NOT; break; - case Token::After: // after - m_context << Instruction::TIMESTAMP << Instruction::ADD; - break; case Token::Delete: // delete solAssert(!!m_currentLValue, "LValue not retrieved."); m_currentLValue->setToZero(_unaryOperation.location()); |