Skip to content

Commit 0d34125

Browse files
author
Daniel Kroening
committed
vector_exprt is multi-ary
1 parent 9ad5584 commit 0d34125

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/util/std_expr.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1703,16 +1703,16 @@ inline void validate_expr(const array_list_exprt &value)
17031703
}
17041704

17051705
/// \brief Vector constructor from list of elements
1706-
class vector_exprt:public exprt
1706+
class vector_exprt : public multi_ary_exprt
17071707
{
17081708
public:
17091709
DEPRECATED("use vector_exprt(type) instead")
1710-
vector_exprt():exprt(ID_vector)
1710+
vector_exprt() : multi_ary_exprt(ID_vector)
17111711
{
17121712
}
17131713

1714-
explicit vector_exprt(const vector_typet &_type):
1715-
exprt(ID_vector, _type)
1714+
explicit vector_exprt(const vector_typet &_type)
1715+
: multi_ary_exprt(ID_vector, _type)
17161716
{
17171717
}
17181718
};

0 commit comments

Comments
 (0)