3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-12 20:18:18 +00:00
This commit is contained in:
Nikolaj Bjorner 2022-07-27 04:28:28 +02:00
parent cd7ef11593
commit b6c80e8b00

View file

@ -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];