We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
knownConditionTrueFalse
1 parent ecc2557 commit 16ac8c1Copy full SHA for 16ac8c1
1 file changed
lib/path.cpp
@@ -227,6 +227,7 @@ Settings::Language Path::identify(const std::string &path, bool *header)
227
return Settings::Language::CPP;
228
if (c_src_exts.find(ext) != c_src_exts.end())
229
return Settings::Language::C;
230
+ // cppcheck-suppress knownConditionTrueFalse - TODO: FP
231
if (!caseInsensitiveFilesystem())
232
strTolower(ext);
233
if (ext == ".h") {
0 commit comments