The remaining nulls

This commit is contained in:
Tim Wojtulewicz 2020-04-02 11:13:07 -07:00
parent 41c3256faa
commit 0a47588d0b
80 changed files with 565 additions and 565 deletions

View file

@ -136,7 +136,7 @@ void Frame::Reset(int startIdx)
for ( int i = startIdx; i < size; ++i )
{
UnrefElement(i);
frame[i] = 0;
frame[i] = nullptr;
}
}
@ -159,7 +159,7 @@ void Frame::Describe(ODesc* d) const
for ( int i = 0; i < size; ++i )
{
d->Add(frame[i] != 0);
d->Add(frame[i] != nullptr);
d->SP();
}
}