mirror of
https://github.com/Z3Prover/z3
synced 2025-08-17 16:52:15 +00:00
Use nullptr.
This commit is contained in:
parent
f01328c65f
commit
76eb7b9ede
625 changed files with 4639 additions and 4639 deletions
|
@ -115,7 +115,7 @@ namespace sat {
|
|||
class tmp_clause {
|
||||
clause * m_clause;
|
||||
public:
|
||||
tmp_clause():m_clause(0) {}
|
||||
tmp_clause():m_clause(nullptr) {}
|
||||
~tmp_clause() { if (m_clause) dealloc_svect(m_clause); }
|
||||
clause * get() const { return m_clause; }
|
||||
void set(unsigned num_lits, literal const * lits, bool learned);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue