mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
iosource/threading/input/logging: Replace nulls with nullptr
This commit is contained in:
parent
4ee84b69f2
commit
cb01e098df
27 changed files with 154 additions and 156 deletions
|
@ -24,7 +24,7 @@ Ascii::Ascii(WriterFrontend* frontend) : WriterBackend(frontend)
|
|||
tsv = false;
|
||||
use_json = false;
|
||||
enable_utf_8 = false;
|
||||
formatter = 0;
|
||||
formatter = nullptr;
|
||||
gzip_level = 0;
|
||||
gzfile = nullptr;
|
||||
|
||||
|
@ -179,7 +179,7 @@ bool Ascii::InitFilterOptions()
|
|||
bool Ascii::InitFormatter()
|
||||
{
|
||||
delete formatter;
|
||||
formatter = 0;
|
||||
formatter = nullptr;
|
||||
|
||||
if ( use_json )
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue