Fix compile error (Certainty::inconclusive)

This commit is contained in:
Daniel Marjamäki 2021-02-25 12:21:44 +01:00
parent 951ca2c8b9
commit b05e55f04c
1 changed files with 1 additions and 1 deletions

View File

@ -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) {