mirror of
https://github.com/Z3Prover/z3
synced 2026-02-25 17:51:20 +00:00
Use nullptr rather than 0/NULL.
This commit is contained in:
parent
eea9b79035
commit
b83d6d77c9
9 changed files with 30 additions and 30 deletions
|
|
@ -154,7 +154,7 @@ public:
|
|||
return static_cast<unsigned>(reinterpret_cast<size_t *>(m_data)[SIZE_IDX]);
|
||||
}
|
||||
|
||||
bool empty() const { return m_data == 0; }
|
||||
bool empty() const { return m_data == nullptr; }
|
||||
|
||||
T & operator[](unsigned idx) {
|
||||
SASSERT(idx < size());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue