Skip to content

Commit d78db88

Browse files
committed
Fixup lift_lets
1 parent 14edbb7 commit d78db88

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/goto-symex/goto_symex.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ class goto_symext
516516
/// The assignments will be made in bottom-up topological but otherwise
517517
/// arbitrary order (i.e. in `(let x = let y = 0 in x + y) + (let z = 0 in z)
518518
/// we will define `y` before `x`, but `z` and `x` could come in either order)
519-
void lift_lets(statet &, exprt &, assignment_typet);
519+
void lift_lets(statet &, exprt &);
520520

521521
/// Execute a single let expression, which should not have any nested let
522522
/// expressions (use \ref lift_lets instead if there might be).

src/goto-symex/symex_clean_expr.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ void goto_symext::lift_let(statet &state, const let_exprt &let_expr)
188188
symex_targett::assignment_typet::HIDDEN);
189189
}
190190

191-
symex_live_let_variablest goto_symext::lift_lets(statet &state, exprt &rhs)
191+
void goto_symext::lift_lets(statet &state, exprt &rhs)
192192
{
193193
for(auto it = rhs.depth_begin(), itend = rhs.depth_end(); it != itend;)
194194
{

0 commit comments

Comments
 (0)