Skip to content

Commit 5897b14

Browse files
authored
Merge pull request #5568 from ethereum/smt_remove_unary_plus
[SMTChecker] Remove unary plus operator
2 parents 413cb67 + 6d41ffb commit 5897b14

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

libsolidity/formal/SMTChecker.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -323,9 +323,6 @@ void SMTChecker::endVisit(UnaryOperation const& _op)
323323
);
324324
break;
325325
}
326-
case Token::Add: // +
327-
defineExpr(_op, expr(_op.subExpression()));
328-
break;
329326
case Token::Sub: // -
330327
{
331328
defineExpr(_op, 0 - expr(_op.subExpression()));

0 commit comments

Comments
 (0)