From 04168cbb593be0d58326b09346e90a6348a862ff Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Sun, 23 Aug 2015 17:52:30 +0200 Subject: cmGlobalUnixMakefileGenerator3: Rename member. --- Source/cmGlobalUnixMakefileGenerator3.cxx | 6 +++--- Source/cmGlobalUnixMakefileGenerator3.h | 2 +- 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::const_iterator lgi = this->LocalGenerators.begin(); @@ -943,7 +943,7 @@ void cmGlobalUnixMakefileGenerator3::InitializeProgressMarks() { // This local generator includes the target. std::set& 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 emitted; std::set const& targets - = this->LocalGeneratorToTargetMap[lg]; + = this->DirectoryTargetsMap[lg]; for(std::set::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 > - LocalGeneratorToTargetMap; + DirectoryTargetsMap; virtual void InitializeProgressMarks(); }; -- cgit v0.12