Skip to content

Remove deprecated make_with_expr #8666

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions src/util/expr_util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,6 @@ exprt make_binary(const exprt &expr)
return previous;
}

with_exprt make_with_expr(const update_exprt &src)
{
return src.make_with_expr();
}

exprt is_not_zero(
const exprt &src,
const namespacet &ns)
Expand Down
4 changes: 0 additions & 4 deletions src/util/expr_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,6 @@ bool is_assignable(const exprt &);
/// splits an expression with >=3 operands into nested binary expressions
exprt make_binary(const exprt &);

/// converts an update expr into a (possibly nested) with expression
DEPRECATED(SINCE(2024, 9, 10, "use update_exprt::make_with_expr() instead"))
with_exprt make_with_expr(const update_exprt &);

/// converts a scalar/float expression to C/C++ Booleans
exprt is_not_zero(const exprt &, const namespacet &ns);

Expand Down
Loading