Skip to content

Commit e85d6ba

Browse files
OwenDaniel Kroening
Owen
authored and
Daniel Kroening
committed
Remove redundant line
1 parent 55eec59 commit e85d6ba

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/util/simplify_expr.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2514,9 +2514,7 @@ bool simplify_exprt::simplify_rec(exprt &expr)
25142514

25152515
// We work on a copy to prevent unnecessary destruction of sharing.
25162516
exprt tmp=expr;
2517-
bool result=true;
2518-
2519-
result=simplify_node_preorder(tmp);
2517+
bool result = simplify_node_preorder(tmp);
25202518

25212519
if(!simplify_node(tmp))
25222520
result=false;

0 commit comments

Comments
 (0)