Remove After from ExpressionCompiler

This commit is contained in:
Denton Liu 2016-08-05 16:53:47 -04:00
parent 0988eba4fe
commit 5ee846e39f

View File

@ -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());