Skip to content

Commit 4a27ea0

Browse files
committed
Remove deprecated index_exprt constructors
These have been marked deprecated for a while and the preceding commit removes all of their uses.
1 parent 23b31ae commit 4a27ea0

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
@@ -1594,16 +1594,6 @@ inline void validate_expr(const notequal_exprt &value)
15941594
class index_exprt:public binary_exprt
15951595
{
15961596
public:
1597-
DEPRECATED("use index_exprt(array, index) instead")
1598-
index_exprt():binary_exprt(ID_index)
1599-
{
1600-
}
1601-
1602-
DEPRECATED("use index_exprt(array, index) instead")
1603-
explicit index_exprt(const typet &_type):binary_exprt(ID_index, _type)
1604-
{
1605-
}
1606-
16071597
index_exprt(const exprt &_array, const exprt &_index):
16081598
binary_exprt(_array, ID_index, _index, _array.type().subtype())
16091599
{

0 commit comments

Comments
 (0)