From 5ee846e39fb69a07a297a1af828e1b11c237f83a Mon Sep 17 00:00:00 2001 From: Denton Liu Date: Fri, 5 Aug 2016 16:53:47 -0400 Subject: Remove After from ExpressionCompiler --- libsolidity/codegen/ExpressionCompiler.cpp | 3 --- 1 file changed, 3 deletions(-) (limited to 'libsolidity/codegen') 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()); -- cgit