summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2012-09-29 16:32:21 (GMT)
committerStephen Kelly <steveire@gmail.com>2012-09-29 16:42:56 (GMT)
commit19c3206bdc8640c35db79dcbf8dae58244196ca4 (patch)
treed9f7c730d94c43bb0a557525ea448b1df284a2a6 /Source/cmTarget.cxx
parent9d462b22a3ae0e4e59f090cec01522abc58e8d8c (diff)
downloadCMake-19c3206bdc8640c35db79dcbf8dae58244196ca4.zip
CMake-19c3206bdc8640c35db79dcbf8dae58244196ca4.tar.gz
CMake-19c3206bdc8640c35db79dcbf8dae58244196ca4.tar.bz2
Remove unused parameter marker and the unused parameter.
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r--Source/cmTarget.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index 0a97910..ad9b5e1 100644
--- a/Source/cmTarget.cxx
+++ b/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;