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:
parent
6e5d0b7594
commit
61ac006cbe
1 changed files with 1 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue