Remove unary plus.

This commit is contained in:
chriseth
2020-12-04 15:14:25 +01:00
committed by Leonardo Alt
parent 89919e47d3
commit 4be9b409de
2 changed files with 1 additions and 2 deletions
@@ -220,8 +220,6 @@ optional<rational> ConstantEvaluator::evaluateUnaryOperator(Token _operator, rat
return nullopt;
else
return ~_input.numerator();
case Token::Add:
return +_input;
case Token::Sub:
return -_input;
default: