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