mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Remove After from ExpressionCompiler
This commit is contained in:
parent
0988eba4fe
commit
5ee846e39f
@ -297,9 +297,6 @@ bool ExpressionCompiler::visit(UnaryOperation const& _unaryOperation)
|
|||||||
case Token::BitNot: // ~
|
case Token::BitNot: // ~
|
||||||
m_context << Instruction::NOT;
|
m_context << Instruction::NOT;
|
||||||
break;
|
break;
|
||||||
case Token::After: // after
|
|
||||||
m_context << Instruction::TIMESTAMP << Instruction::ADD;
|
|
||||||
break;
|
|
||||||
case Token::Delete: // delete
|
case Token::Delete: // delete
|
||||||
solAssert(!!m_currentLValue, "LValue not retrieved.");
|
solAssert(!!m_currentLValue, "LValue not retrieved.");
|
||||||
m_currentLValue->setToZero(_unaryOperation.location());
|
m_currentLValue->setToZero(_unaryOperation.location());
|
||||||
|
Loading…
Reference in New Issue
Block a user