3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

Remove unnecessary null pointer checks

This commit is contained in:
Lev Nachmanson 2019-03-22 10:32:33 -07:00
parent 6e5d0b7594
commit 61ac006cbe

View file

@ -754,10 +754,7 @@ public:
}
for (auto s : m_columns) {
auto col = s.second;
auto b = col->m_bound;
if (b != nullptr) {
delete b;
}
delete col->m_bound;
delete col;
}
}