Remove unused parameter marker and the unused parameter.

This commit is contained in:
Stephen Kelly 2012-09-29 18:32:21 +02:00
parent 9d462b22a3
commit 19c3206bdc
1 changed files with 1 additions and 2 deletions

View File

@ -2020,9 +2020,8 @@ bool cmTarget::NameResolvesToFramework(const std::string& libname)
} }
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
bool cmTarget::AddFramework(const std::string& libname, LinkLibraryType llt) bool cmTarget::AddFramework(const std::string& libname, LinkLibraryType)
{ {
(void)llt; // TODO: What is this?
if(this->NameResolvesToFramework(libname.c_str())) if(this->NameResolvesToFramework(libname.c_str()))
{ {
std::string frameworkDir = libname; std::string frameworkDir = libname;