mirror of
https://github.com/Z3Prover/z3
synced 2025-10-07 16:31:55 +00:00
Use nullptr.
This commit is contained in:
parent
f01328c65f
commit
76eb7b9ede
625 changed files with 4639 additions and 4639 deletions
|
@ -96,7 +96,7 @@ namespace datalog {
|
|||
m(ctx.get_manager()),
|
||||
m_rmanager(ctx),
|
||||
m_answer(m),
|
||||
m_last_result_relation(0),
|
||||
m_last_result_relation(nullptr),
|
||||
m_ectx(ctx),
|
||||
m_sw(0) {
|
||||
|
||||
|
@ -121,7 +121,7 @@ namespace datalog {
|
|||
rel_context::~rel_context() {
|
||||
if (m_last_result_relation) {
|
||||
m_last_result_relation->deallocate();
|
||||
m_last_result_relation = 0;
|
||||
m_last_result_relation = nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue