binpac: Apply clang-tidy's modernize-use-nullptr check

This commit is contained in:
Tim Wojtulewicz 2023-01-27 08:03:08 -07:00
parent 49a96f5216
commit 9f3750d0cc
29 changed files with 183 additions and 181 deletions

View file

@ -6,6 +6,6 @@ namespace zeek { class RE_Matcher; }
namespace binpac
{
std::vector<zeek::RE_Matcher*>* uncompiled_re_matchers = 0;
std::vector<zeek::RE_Matcher*>* uncompiled_re_matchers = nullptr;
}