From b05e55f04c6908456a7ec34ba2b0333a4aebdb9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Thu, 25 Feb 2021 12:21:44 +0100 Subject: [PATCH] Fix compile error (Certainty::inconclusive) --- oss-fuzz/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oss-fuzz/main.cpp b/oss-fuzz/main.cpp index f5f64647b..1967cef5e 100644 --- a/oss-fuzz/main.cpp +++ b/oss-fuzz/main.cpp @@ -12,7 +12,7 @@ public: : ErrorLogger() , cppcheck(*this, false, nullptr) { cppcheck.settings().addEnabled("all"); - cppcheck.settings().inconclusive = true; + cppcheck.settings().certainty.setEnabled(Certainty::inconclusive, true); } void run(const std::string &code) {