We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
knownConditionTrueFalse
1 parent b02b443 commit 11859d7Copy full SHA for 11859d7
1 file changed
lib/path.cpp
@@ -252,6 +252,7 @@ Settings::Language Path::identify(const std::string &path, bool *header)
252
return Settings::Language::CPP;
253
if (c_src_exts.find(ext) != c_src_exts.end())
254
return Settings::Language::C;
255
+ // cppcheck-suppress knownConditionTrueFalse - TODO: FP
256
if (!caseInsensitiveFilesystem())
257
strTolower(ext);
258
if (ext == ".h") {
0 commit comments