Skip to content

Commit 01357a0

Browse files
authored
Merge pull request #8510 from diffblue/mult_exprt
add multi-ary constructor for `mult_exprt`
2 parents 5164a50 + 7d5bfd9 commit 01357a0

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/util/std_expr.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1110,6 +1110,11 @@ class mult_exprt:public multi_ary_exprt
11101110
: multi_ary_exprt(std::move(_lhs), ID_mult, std::move(_rhs))
11111111
{
11121112
}
1113+
1114+
mult_exprt(exprt::operandst factors, typet type)
1115+
: multi_ary_exprt(ID_mult, std::move(factors), std::move(type))
1116+
{
1117+
}
11131118
};
11141119

11151120
template <>

0 commit comments

Comments
 (0)