mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 02:28:21 +00:00
The remaining nulls
This commit is contained in:
parent
41c3256faa
commit
0a47588d0b
80 changed files with 565 additions and 565 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue