Skip to content

Commit 4e89fc0

Browse files
committed
Remove deprecated index_exprt constructors
These have been deprecated since 21 Sept 2018.
1 parent 6d0177b commit 4e89fc0

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

src/util/std_expr.h

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1501,16 +1501,6 @@ inline notequal_exprt &to_notequal_expr(exprt &expr)
15011501
class index_exprt:public binary_exprt
15021502
{
15031503
public:
1504-
DEPRECATED(SINCE(2018, 9, 21, "use index_exprt(array, index) instead"))
1505-
index_exprt():binary_exprt(ID_index)
1506-
{
1507-
}
1508-
1509-
DEPRECATED(SINCE(2018, 9, 21, "use index_exprt(array, index) instead"))
1510-
explicit index_exprt(const typet &_type):binary_exprt(ID_index, _type)
1511-
{
1512-
}
1513-
15141504
index_exprt(const exprt &_array, exprt _index)
15151505
: binary_exprt(_array, ID_index, std::move(_index), _array.type().subtype())
15161506
{

0 commit comments

Comments
 (0)