Skip to content

Commit 5d48769

Browse files
committed
Remove deprecated index_exprt constructors
These have been deprecated since 21 Sept 2018.
1 parent 1795db1 commit 5d48769

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

0 commit comments

Comments
 (0)