diff options
author | Stephen Kelly <steveire@gmail.com> | 2016-10-12 22:18:22 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2016-10-15 09:14:21 (GMT) |
commit | 60b3f216c18aa317656433bcc0b724e6abd8d02f (patch) | |
tree | de11bc434cb8145870ae1b989ff056c6594ac396 /Source/cmGeneratorTarget.cxx | |
parent | aaa5dbbf64392dad518668ac1d046d624dac41f3 (diff) | |
download | CMake-60b3f216c18aa317656433bcc0b724e6abd8d02f.zip CMake-60b3f216c18aa317656433bcc0b724e6abd8d02f.tar.gz CMake-60b3f216c18aa317656433bcc0b724e6abd8d02f.tar.bz2 |
cmTarget: Remove mutable marker from properties
Diffstat (limited to 'Source/cmGeneratorTarget.cxx')
-rw-r--r-- | Source/cmGeneratorTarget.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx index 7eb0ebf..d622ad9 100644 --- a/Source/cmGeneratorTarget.cxx +++ b/Source/cmGeneratorTarget.cxx @@ -3950,7 +3950,7 @@ void cmGeneratorTarget::ComputeVersionedName(std::string& vName, std::vector<std::string> cmGeneratorTarget::GetPropertyKeys() const { - cmPropertyMap propsObject = this->Target->GetProperties(); + cmPropertyMap const& propsObject = this->Target->GetProperties(); std::vector<std::string> props; props.reserve(propsObject.size()); for (cmPropertyMap::const_iterator it = propsObject.begin(); |