plugin/probabilistic/zeekygen: Replace nulls with nullptr

This commit is contained in:
Tim Wojtulewicz 2020-04-02 10:39:28 -07:00
parent 393b8353cb
commit 41c3256faa
10 changed files with 36 additions and 36 deletions

View file

@ -168,7 +168,7 @@ public:
bool HavePluginForHook(HookType hook) const
{
// Inline to avoid the function call.
return hooks[hook] != 0;
return hooks[hook] != nullptr;
}
/**