Browse Source

Remove unused parameter marker and the unused parameter.

Stephen Kelly 13 years ago
parent
commit
19c3206bdc
1 changed files with 1 additions and 2 deletions
  1. 1 2
      Source/cmTarget.cxx

+ 1 - 2
Source/cmTarget.cxx

@@ -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()))
     {
     std::string frameworkDir = libname;