Skip to content

Commit 63f09ac

Browse files
author
Daniel Kroening
committed
remove unused function make_next_state
1 parent 77c8b9c commit 63f09ac

File tree

2 files changed

+0
-14
lines changed

2 files changed

+0
-14
lines changed

src/util/expr_util.cpp

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,6 @@ Author: Daniel Kroening, [email protected]
1717
#include "namespace.h"
1818
#include "arith_tools.h"
1919

20-
void make_next_state(exprt &expr)
21-
{
22-
Forall_operands(it, expr)
23-
make_next_state(*it);
24-
25-
if(expr.id()==ID_symbol)
26-
expr.id(ID_next_symbol);
27-
}
28-
2920
exprt make_binary(const exprt &expr)
3021
{
3122
const exprt::operandst &operands=expr.operands();

src/util/expr_util.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,6 @@ class symbolt;
2828
class typet;
2929
class namespacet;
3030

31-
/// \deprecated This function will eventually be removed. Use functions
32-
/// from \ref util/std_expr.h instead.
33-
34-
void make_next_state(exprt &);
35-
3631
/// splits an expression with >=3 operands into nested binary expressions
3732
exprt make_binary(const exprt &);
3833

0 commit comments

Comments
 (0)