In commit ef935b17ab (clang-tidy: fix `readability-use-anyofallof` warnings, 2021-01-22, v3.20.0-rc1~95^2) a comment was copied to a location where it doesn't make sense.
@@ -81,8 +81,6 @@ struct cmFindProgramHelper
{
return std::any_of(this->Names.begin(), this->Names.end(),
[this, &path](std::string const& n) -> bool {
- // Only perform search relative to current directory
- // if the file name contains a directory separator.
return this->CheckDirectoryForName(path, n);
});
}