From 2e75bf672b0d8e58972f9445a0ef475d21dbe87f Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 9 May 2014 10:04:23 -0400 Subject: cmTarget: Drop unused GetProperty signature No callers use the second "scope" argument. Drop this signature and hard-code the default parameter value internally. --- Source/cmTarget.cxx | 13 +++---------- Source/cmTarget.h | 1 - 2 files changed, 3 insertions(+), 11 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; } diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 0e9d682..a23c601 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -257,7 +257,6 @@ public: void SetProperty(const char *prop, const char *value); void AppendProperty(const char* prop, const char* value,bool asString=false); const char *GetProperty(const char *prop) const; - const char *GetProperty(const char *prop, cmProperty::ScopeType scope) const; bool GetPropertyAsBool(const char *prop) const; void CheckProperty(const char* prop, cmMakefile* context) const; -- cgit v0.12