oss-fuzz: Fixed compiler error

This commit is contained in:
Daniel Marjamäki 2020-05-20 17:05:10 +02:00
parent c5455764ad
commit 9726d0efea
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ private:
public:
CppcheckExecutor()
: ErrorLogger()
, cppcheck(*this, false) {
, cppcheck(*this, false, nullptr) {
cppcheck.settings().addEnabled("all");
cppcheck.settings().inconclusive = true;
}