summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalGenerator.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-07-19 14:38:55 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-08-24 18:05:38 (GMT)
commit867b5be8b89c9b4f18ea604e1c61a154d0335c4c (patch)
tree088f1d4a4d2eaf0443e92e63849a89adbbbb17dc /Source/cmLocalGenerator.h
parent6c832219eadb6062c5026817ed86b81e583c8e5d (diff)
downloadCMake-867b5be8b89c9b4f18ea604e1c61a154d0335c4c.zip
CMake-867b5be8b89c9b4f18ea604e1c61a154d0335c4c.tar.gz
CMake-867b5be8b89c9b4f18ea604e1c61a154d0335c4c.tar.bz2
cmLocalGenerator: Remove unused Children member.
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r--Source/cmLocalGenerator.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h
index 1c18788..915814b 100644
--- a/Source/cmLocalGenerator.h
+++ b/Source/cmLocalGenerator.h
@@ -89,11 +89,6 @@ public:
///! set/get the parent generator
cmLocalGenerator* GetParent() const {return this->Parent;}
- ///! set/get the children
- void AddChild(cmLocalGenerator* g) { this->Children.push_back(g); }
- std::vector<cmLocalGenerator*>& GetChildren() { return this->Children; }
-
-
void AddArchitectureFlags(std::string& flags,
cmGeneratorTarget const* target,
const std::string&lang, const std::string& config);
@@ -349,7 +344,6 @@ protected:
cmState::Snapshot StateSnapshot;
cmGlobalGenerator *GlobalGenerator;
cmLocalGenerator* Parent;
- std::vector<cmLocalGenerator*> Children;
std::map<std::string, std::string> UniqueObjectNamesMap;
std::string::size_type ObjectPathMax;
std::set<std::string> ObjectMaxPathViolations;