diff options
author | Brad King <brad.king@kitware.com> | 2014-05-09 14:04:23 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-05-09 15:06:13 (GMT) |
commit | 2e75bf672b0d8e58972f9445a0ef475d21dbe87f (patch) | |
tree | 900dc78bc8365898ce7dc4d57e2e898e4ba46ded /Source/cmTarget.cxx | |
parent | 890efcb6077d01629ca29f9f54c90a1f0663033a (diff) | |
download | CMake-2e75bf672b0d8e58972f9445a0ef475d21dbe87f.zip CMake-2e75bf672b0d8e58972f9445a0ef475d21dbe87f.tar.gz CMake-2e75bf672b0d8e58972f9445a0ef475d21dbe87f.tar.bz2 |
cmTarget: Drop unused GetProperty signature
No callers use the second "scope" argument. Drop this signature and
hard-code the default parameter value internally.
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index e2a568b..9eb1f63 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -2624,12 +2624,6 @@ const char* cmTarget::GetFeature(const char* feature, const char* config) const } //---------------------------------------------------------------------------- -const char *cmTarget::GetProperty(const char* prop) const -{ - return this->GetProperty(prop, cmProperty::TARGET); -} - -//---------------------------------------------------------------------------- bool cmTarget::HandleLocationPropertyPolicy() const { if (this->IsImported()) @@ -2667,8 +2661,7 @@ bool cmTarget::HandleLocationPropertyPolicy() const } //---------------------------------------------------------------------------- -const char *cmTarget::GetProperty(const char* prop, - cmProperty::ScopeType scope) const +const char *cmTarget::GetProperty(const char* prop) const { if(!prop) { @@ -2857,10 +2850,10 @@ const char *cmTarget::GetProperty(const char* prop, } bool chain = false; const char *retVal = - this->Properties.GetPropertyValue(prop, scope, chain); + this->Properties.GetPropertyValue(prop, cmProperty::TARGET, chain); if (chain) { - return this->Makefile->GetProperty(prop,scope); + return this->Makefile->GetProperty(prop, cmProperty::TARGET); } return retVal; } |