mirror of
https://github.com/zeek/zeek.git
synced 2025-10-15 21:18:20 +00:00
plugin/probabilistic/zeekygen: Replace nulls with nullptr
This commit is contained in:
parent
393b8353cb
commit
41c3256faa
10 changed files with 36 additions and 36 deletions
|
@ -288,7 +288,7 @@ void Manager::Identifier(IntrusivePtr<ID> id)
|
|||
{
|
||||
DBG_LOG(DBG_ZEEKYGEN, "Finished document for type %s", id->Name());
|
||||
incomplete_type->CompletedTypeDecl();
|
||||
incomplete_type = 0;
|
||||
incomplete_type = nullptr;
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -318,7 +318,7 @@ void Manager::Identifier(IntrusivePtr<ID> id)
|
|||
// Handled specially since they don't have a script location.
|
||||
DBG_LOG(DBG_ZEEKYGEN, "Made internal IdentifierInfo %s",
|
||||
id->Name());
|
||||
CreateIdentifierInfo(id, 0);
|
||||
CreateIdentifierInfo(id, nullptr);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue