mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 03:15:50 +00:00
deal with compiler warnings, from MacOS CI build
This commit is contained in:
parent
7eceeff349
commit
f29a596070
13 changed files with 19 additions and 25 deletions
|
@ -239,9 +239,8 @@ public:
|
|||
|
||||
std::ostream& display(std::ostream& out) const {
|
||||
out << "number of constraints = " << m_constraints.size() << std::endl;
|
||||
for (auto const& c : indices()) {
|
||||
for (constraint_index c : indices())
|
||||
display(out << "(" << c << ") ", *m_constraints[c]);
|
||||
}
|
||||
return out;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue