Skip to content

Commit 82881eb

Browse files
committed
Remove deprecated index_exprt constructors
These have been deprecated since 21 Sept 2018.
1 parent 01952de commit 82881eb

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
@@ -1611,16 +1611,6 @@ inline void validate_expr(const notequal_exprt &value)
16111611
class index_exprt:public binary_exprt
16121612
{
16131613
public:
1614-
DEPRECATED("use index_exprt(array, index) instead")
1615-
index_exprt():binary_exprt(ID_index)
1616-
{
1617-
}
1618-
1619-
DEPRECATED("use index_exprt(array, index) instead")
1620-
explicit index_exprt(const typet &_type):binary_exprt(ID_index, _type)
1621-
{
1622-
}
1623-
16241614
index_exprt(const exprt &_array, const exprt &_index):
16251615
binary_exprt(_array, ID_index, _index, _array.type().subtype())
16261616
{

0 commit comments

Comments
 (0)