Skip to content

Commit b05e55f

Browse files
committed
Fix compile error (Certainty::inconclusive)
1 parent 951ca2c commit b05e55f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

oss-fuzz/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class CppcheckExecutor : public ErrorLogger {
1212
: ErrorLogger()
1313
, cppcheck(*this, false, nullptr) {
1414
cppcheck.settings().addEnabled("all");
15-
cppcheck.settings().inconclusive = true;
15+
cppcheck.settings().certainty.setEnabled(Certainty::inconclusive, true);
1616
}
1717

1818
void run(const std::string &code) {

0 commit comments

Comments
 (0)