summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-08-23 15:52:30 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-08-23 16:05:13 (GMT)
commit04168cbb593be0d58326b09346e90a6348a862ff (patch)
tree6e1306e5976e0273ed682fe342a669a38f35f35c /Source
parent2394584ce2fa4ff88bb8b196e5a75fc5f848ba4a (diff)
downloadCMake-04168cbb593be0d58326b09346e90a6348a862ff.zip
CMake-04168cbb593be0d58326b09346e90a6348a862ff.tar.gz
CMake-04168cbb593be0d58326b09346e90a6348a862ff.tar.bz2
cmGlobalUnixMakefileGenerator3: Rename member.
Diffstat (limited to 'Source')
-rw-r--r--Source/cmGlobalUnixMakefileGenerator3.cxx6
-rw-r--r--Source/cmGlobalUnixMakefileGenerator3.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator3.cxx b/Source/cmGlobalUnixMakefileGenerator3.cxx
index f8dee62..75c2fb8 100644
--- a/Source/cmGlobalUnixMakefileGenerator3.cxx
+++ b/Source/cmGlobalUnixMakefileGenerator3.cxx
@@ -921,7 +921,7 @@ cmGlobalUnixMakefileGenerator3
// generator directory level.
void cmGlobalUnixMakefileGenerator3::InitializeProgressMarks()
{
- this->LocalGeneratorToTargetMap.clear();
+ this->DirectoryTargetsMap.clear();
// Loop over all targets in all local generators.
for(std::vector<cmLocalGenerator*>::const_iterator
lgi = this->LocalGenerators.begin();
@@ -943,7 +943,7 @@ void cmGlobalUnixMakefileGenerator3::InitializeProgressMarks()
{
// This local generator includes the target.
std::set<cmGeneratorTarget const*>& targetSet =
- this->LocalGeneratorToTargetMap[clg];
+ this->DirectoryTargetsMap[clg];
targetSet.insert(gt);
// Add dependencies of the included target. An excluded
@@ -992,7 +992,7 @@ cmGlobalUnixMakefileGenerator3
size_t count = 0;
std::set<cmGeneratorTarget const*> emitted;
std::set<cmGeneratorTarget const*> const& targets
- = this->LocalGeneratorToTargetMap[lg];
+ = this->DirectoryTargetsMap[lg];
for(std::set<cmGeneratorTarget const*>::const_iterator t = targets.begin();
t != targets.end(); ++t)
{
diff --git a/Source/cmGlobalUnixMakefileGenerator3.h b/Source/cmGlobalUnixMakefileGenerator3.h
index a8f99dd..7601cc4 100644
--- a/Source/cmGlobalUnixMakefileGenerator3.h
+++ b/Source/cmGlobalUnixMakefileGenerator3.h
@@ -208,7 +208,7 @@ private:
virtual std::string GetEditCacheCommand() const;
std::map<cmLocalGenerator*, std::set<cmGeneratorTarget const*> >
- LocalGeneratorToTargetMap;
+ DirectoryTargetsMap;
virtual void InitializeProgressMarks();
};