mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-26 18:58:34 -06:00
typo: Match argument name with the header
This commit is contained in:
@@ -988,13 +988,13 @@ void cmGlobalGenerator::FillExtensionToLanguageMap(const std::string& l,
|
||||
}
|
||||
}
|
||||
|
||||
bool cmGlobalGenerator::IgnoreFile(const char* l) const
|
||||
bool cmGlobalGenerator::IgnoreFile(const char* ext) const
|
||||
{
|
||||
if(!this->GetLanguageFromExtension(l).empty())
|
||||
if(!this->GetLanguageFromExtension(ext).empty())
|
||||
{
|
||||
return false;
|
||||
}
|
||||
return (this->IgnoreExtensions.count(l) > 0);
|
||||
return (this->IgnoreExtensions.count(ext) > 0);
|
||||
}
|
||||
|
||||
bool cmGlobalGenerator::GetLanguageEnabled(const std::string& l) const
|
||||
|
||||
Reference in New Issue
Block a user