Skip to content

Commit 370ec81

Browse files
committed
Remove deprecated *_exprt constructors
These have been marked deprecated for several months.
1 parent 7d95564 commit 370ec81

File tree

2 files changed

+0
-284
lines changed

2 files changed

+0
-284
lines changed

src/util/mathematical_expr.h

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,6 @@ inline transt &to_trans_expr(exprt &expr)
9797
class power_exprt : public binary_exprt
9898
{
9999
public:
100-
DEPRECATED(SINCE(2018, 9, 21, "use power_exprt(lhs, rhs) instead"))
101-
power_exprt() : binary_exprt(ID_power)
102-
{
103-
}
104-
105100
power_exprt(const exprt &_base, const exprt &_exp)
106101
: binary_exprt(_base, ID_power, _exp)
107102
{
@@ -146,11 +141,6 @@ inline power_exprt &to_power_expr(exprt &expr)
146141
class factorial_power_exprt : public binary_exprt
147142
{
148143
public:
149-
DEPRECATED(SINCE(2018, 9, 21, "use factorial_power_exprt(lhs, rhs) instead"))
150-
factorial_power_exprt() : binary_exprt(ID_factorial_power)
151-
{
152-
}
153-
154144
factorial_power_exprt(const exprt &_base, const exprt &_exp)
155145
: binary_exprt(_base, ID_factorial_power, _exp)
156146
{

0 commit comments

Comments
 (0)