Skip to content

Commit 4cc3f54

Browse files
authored
Merge pull request #8666 from tautschnig/remove-make_with_expr
Remove deprecated make_with_expr
2 parents 5d1438a + b372a59 commit 4cc3f54

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

src/util/expr_util.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,6 @@ exprt make_binary(const exprt &expr)
6666
return previous;
6767
}
6868

69-
with_exprt make_with_expr(const update_exprt &src)
70-
{
71-
return src.make_with_expr();
72-
}
73-
7469
exprt is_not_zero(
7570
const exprt &src,
7671
const namespacet &ns)

src/util/expr_util.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,6 @@ bool is_assignable(const exprt &);
4040
/// splits an expression with >=3 operands into nested binary expressions
4141
exprt make_binary(const exprt &);
4242

43-
/// converts an update expr into a (possibly nested) with expression
44-
DEPRECATED(SINCE(2024, 9, 10, "use update_exprt::make_with_expr() instead"))
45-
with_exprt make_with_expr(const update_exprt &);
46-
4743
/// converts a scalar/float expression to C/C++ Booleans
4844
exprt is_not_zero(const exprt &, const namespacet &ns);
4945

0 commit comments

Comments
 (0)