We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
knownConditionTrueFalse
1 parent 88cefb3 commit 2026887Copy full SHA for 2026887
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