mirror of
https://github.com/Z3Prover/z3
synced 2025-07-03 11:25:40 +00:00
Remove unnecessary null pointer checks
This commit is contained in:
parent
6e5d0b7594
commit
61ac006cbe
1 changed files with 1 additions and 4 deletions
|
@ -754,10 +754,7 @@ public:
|
||||||
}
|
}
|
||||||
for (auto s : m_columns) {
|
for (auto s : m_columns) {
|
||||||
auto col = s.second;
|
auto col = s.second;
|
||||||
auto b = col->m_bound;
|
delete col->m_bound;
|
||||||
if (b != nullptr) {
|
|
||||||
delete b;
|
|
||||||
}
|
|
||||||
delete col;
|
delete col;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue