mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 12:08:18 +00:00
fix #6193
This commit is contained in:
parent
cd7ef11593
commit
b6c80e8b00
|
@ -3414,7 +3414,7 @@ namespace z3 {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
constructor_list::constructor_list(constructors const& cs): ctx(cs.ctx) {
|
inline constructor_list::constructor_list(constructors const& cs): ctx(cs.ctx) {
|
||||||
array<Z3_constructor> cons(cs.size());
|
array<Z3_constructor> cons(cs.size());
|
||||||
for (unsigned i = 0; i < cs.size(); ++i)
|
for (unsigned i = 0; i < cs.size(); ++i)
|
||||||
cons[i] = cs[i];
|
cons[i] = cs[i];
|
||||||
|
|
Loading…
Reference in a new issue