summaryrefslogtreecommitdiffstats
path: root/Source/cmGeneratorTarget.cxx
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2019-06-02 10:35:33 (GMT)
committerSebastian Holtermann <sebholt@xwmw.org>2019-06-08 10:25:35 (GMT)
commit9e64e617eb295c7e2725d871225659ae7bcf7c48 (patch)
tree5356b70a28cd1ad5de06dcadc035489b6645c529 /Source/cmGeneratorTarget.cxx
parentf4bbeb785c8f673a5cff326cc717d0dfbb2734a2 (diff)
downloadCMake-9e64e617eb295c7e2725d871225659ae7bcf7c48.zip
CMake-9e64e617eb295c7e2725d871225659ae7bcf7c48.tar.gz
CMake-9e64e617eb295c7e2725d871225659ae7bcf7c48.tar.bz2
cmPropertyMap: Rename GetPropertyList method to GetKeys
Diffstat (limited to 'Source/cmGeneratorTarget.cxx')
-rw-r--r--Source/cmGeneratorTarget.cxx8
1 files changed, 1 insertions, 7 deletions
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx
index 036a07d..de0f371 100644
--- a/Source/cmGeneratorTarget.cxx
+++ b/Source/cmGeneratorTarget.cxx
@@ -5032,13 +5032,7 @@ void cmGeneratorTarget::ComputeVersionedName(std::string& vName,
std::vector<std::string> cmGeneratorTarget::GetPropertyKeys() const
{
- cmPropertyMap const& propsObject = this->Target->GetProperties();
- std::vector<std::string> props;
- props.reserve(propsObject.size());
- for (auto const& it : propsObject) {
- props.push_back(it.first);
- }
- return props;
+ return this->Target->GetProperties().GetKeys();
}
void cmGeneratorTarget::ReportPropertyOrigin(