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 d062c45 commit 2acabeaCopy full SHA for 2acabea
src/util/std_expr.h
@@ -1823,16 +1823,15 @@ inline void validate_expr(const union_exprt &value)
1823
1824
1825
/// \brief Struct constructor from list of elements
1826
-class struct_exprt:public exprt
+class struct_exprt : public multi_ary_exprt
1827
{
1828
public:
1829
DEPRECATED("use struct_exprt(component_name, value, type) instead")
1830
- struct_exprt():exprt(ID_struct)
+ struct_exprt() : multi_ary_exprt(ID_struct)
1831
1832
}
1833
1834
- explicit struct_exprt(const typet &_type):
1835
- exprt(ID_struct, _type)
+ explicit struct_exprt(const typet &_type) : multi_ary_exprt(ID_struct, _type)
1836
1837
1838
0 commit comments