typo: Match argument name with the header

This commit is contained in:
Ben Boeckel 2014-02-21 18:42:53 -05:00 committed by Brad King
parent 2b17626e9b
commit 5af95c396d
1 changed files with 3 additions and 3 deletions

View File

@ -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 false;
} }
return (this->IgnoreExtensions.count(l) > 0); return (this->IgnoreExtensions.count(ext) > 0);
} }
bool cmGlobalGenerator::GetLanguageEnabled(const std::string& l) const bool cmGlobalGenerator::GetLanguageEnabled(const std::string& l) const