summaryrefslogtreecommitdiffstats
path: root/Source/cmState.cxx
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2019-06-02 11:34:31 (GMT)
committerSebastian Holtermann <sebholt@xwmw.org>2019-06-08 10:25:35 (GMT)
commit8d934d861be8c2a8b43d4c421715fb1e8c0c54fd (patch)
tree35ff59319c575fc206915fad3b02335066af0750 /Source/cmState.cxx
parent026f65d284deaea9f2dba41ed956fabf84e17b6d (diff)
downloadCMake-8d934d861be8c2a8b43d4c421715fb1e8c0c54fd.zip
CMake-8d934d861be8c2a8b43d4c421715fb1e8c0c54fd.tar.gz
CMake-8d934d861be8c2a8b43d4c421715fb1e8c0c54fd.tar.bz2
cmPropertyMap: Make std::map container private
Diffstat (limited to 'Source/cmState.cxx')
-rw-r--r--Source/cmState.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmState.cxx b/Source/cmState.cxx
index fa7df0b..091c2e0 100644
--- a/Source/cmState.cxx
+++ b/Source/cmState.cxx
@@ -267,7 +267,7 @@ void cmState::RemoveCacheEntryProperty(std::string const& key,
cmStateSnapshot cmState::Reset()
{
- this->GlobalProperties.clear();
+ this->GlobalProperties.Clear();
this->PropertyDefinitions.clear();
this->GlobVerificationManager->Reset();
@@ -289,7 +289,7 @@ cmStateSnapshot cmState::Reset()
it->LinkDirectoriesBacktraces.clear();
it->DirectoryEnd = pos;
it->NormalTargetNames.clear();
- it->Properties.clear();
+ it->Properties.Clear();
it->Children.clear();
}