We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3028bf8 commit 9ad5584Copy full SHA for 9ad5584
src/util/std_expr.h
@@ -1642,16 +1642,16 @@ inline void validate_expr(const array_of_exprt &value)
1642
1643
1644
/// \brief Array constructor from list of elements
1645
-class array_exprt:public exprt
+class array_exprt : public multi_ary_exprt
1646
{
1647
public:
1648
DEPRECATED("use array_exprt(type) instead")
1649
- array_exprt():exprt(ID_array)
+ array_exprt() : multi_ary_exprt(ID_array)
1650
1651
}
1652
1653
- explicit array_exprt(const array_typet &_type):
1654
- exprt(ID_array, _type)
+ explicit array_exprt(const array_typet &_type)
+ : multi_ary_exprt(ID_array, _type)
1655
1656
1657
};
0 commit comments