Skip to content

Commit ccdaa86

Browse files
committed
Remove deprecated *_exprt constructors
These have been marked deprecated for several months.
1 parent dbbc6f4 commit ccdaa86

File tree

4 files changed

+0
-495
lines changed

4 files changed

+0
-495
lines changed

src/util/byte_operators.h

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,6 @@ Author: Daniel Kroening, [email protected]
2525
class byte_extract_exprt:public binary_exprt
2626
{
2727
public:
28-
DEPRECATED("use byte_extract_exprt(id, op, offset, type) instead")
29-
explicit byte_extract_exprt(irep_idt _id):binary_exprt(_id)
30-
{
31-
}
32-
33-
DEPRECATED("use byte_extract_exprt(id, op, offset, type) instead")
34-
explicit byte_extract_exprt(irep_idt _id, const typet &_type):
35-
binary_exprt(_id, _type)
36-
{
37-
}
38-
3928
byte_extract_exprt(
4029
irep_idt _id,
4130
const exprt &_op,

src/util/mathematical_expr.h

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,6 @@ Author: Daniel Kroening, [email protected]
1919
class transt : public ternary_exprt
2020
{
2121
public:
22-
DEPRECATED("use transt(op0, op1, op2) instead")
23-
transt() : ternary_exprt(ID_trans)
24-
{
25-
}
26-
2722
transt(
2823
const irep_idt &_id,
2924
const exprt &_op0,
@@ -96,11 +91,6 @@ inline void validate_expr(const transt &value)
9691
class power_exprt : public binary_exprt
9792
{
9893
public:
99-
DEPRECATED("use power_exprt(lhs, rhs) instead")
100-
power_exprt() : binary_exprt(ID_power)
101-
{
102-
}
103-
10494
power_exprt(const exprt &_base, const exprt &_exp)
10595
: binary_exprt(_base, ID_power, _exp)
10696
{
@@ -142,11 +132,6 @@ inline void validate_expr(const power_exprt &value)
142132
class factorial_power_exprt : public binary_exprt
143133
{
144134
public:
145-
DEPRECATED("use factorial_power_exprt(lhs, rhs) instead")
146-
factorial_power_exprt() : binary_exprt(ID_factorial_power)
147-
{
148-
}
149-
150135
factorial_power_exprt(const exprt &_base, const exprt &_exp)
151136
: binary_exprt(_base, ID_factorial_power, _exp)
152137
{

0 commit comments

Comments
 (0)