Skip to content

Commit 7a62d74

Browse files
committed
Remove deprecated index_exprt constructors
These have been deprecated since 21 Sept 2018.
1 parent dd30f62 commit 7a62d74

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
@@ -1457,16 +1457,6 @@ inline void validate_expr(const notequal_exprt &value)
14571457
class index_exprt:public binary_exprt
14581458
{
14591459
public:
1460-
DEPRECATED("use index_exprt(array, index) instead")
1461-
index_exprt():binary_exprt(ID_index)
1462-
{
1463-
}
1464-
1465-
DEPRECATED("use index_exprt(array, index) instead")
1466-
explicit index_exprt(const typet &_type):binary_exprt(ID_index, _type)
1467-
{
1468-
}
1469-
14701460
index_exprt(const exprt &_array, const exprt &_index):
14711461
binary_exprt(_array, ID_index, _index, _array.type().subtype())
14721462
{

0 commit comments

Comments
 (0)