diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-06-06 09:41:15 +0200 |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-06-07 09:29:30 +0200 |
commit | 7c0aa672fe4f1b5c4a15a89d90cd80009a1399d0 (patch) | |
tree | 299fc93196e6df18e1340f50b094df8924b69ded /Source/cmCacheManager.cxx | |
parent | 9058e27a431b01319b18cc4099780fa017ada113 (diff) | |
download | cmake-7c0aa672fe4f1b5c4a15a89d90cd80009a1399d0.tar.gz |
cmPropertyMap: Remove scope parameter from API where not used.
Diffstat (limited to 'Source/cmCacheManager.cxx')
-rw-r--r-- | Source/cmCacheManager.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmCacheManager.cxx b/Source/cmCacheManager.cxx index 108208ef1c..6af14f29f0 100644 --- a/Source/cmCacheManager.cxx +++ b/Source/cmCacheManager.cxx @@ -763,7 +763,7 @@ void cmCacheManager::CacheEntry::SetProperty(const std::string& prop, } else { - this->Properties.SetProperty(prop, value, cmProperty::CACHE); + this->Properties.SetProperty(prop, value); } } @@ -789,7 +789,7 @@ void cmCacheManager::CacheEntry::AppendProperty(const std::string& prop, } else { - this->Properties.AppendProperty(prop, value, cmProperty::CACHE, asString); + this->Properties.AppendProperty(prop, value, asString); } } |