From c8ddb6813b5888fa638ed312fca6473028c61aa4 Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 1 Oct 2009 10:26:54 -0400 Subject: Cleanup cmGlobalGenerator::GetTargetSets method This commit cleans up the declaration, definition, and invocations of the GetTargetSets method and related code. There is no change in function except to make the method virtual. --- Source/cmGlobalVisualStudio6Generator.cxx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'Source/cmGlobalVisualStudio6Generator.cxx') diff --git a/Source/cmGlobalVisualStudio6Generator.cxx b/Source/cmGlobalVisualStudio6Generator.cxx index 8c46bd0810..9a7c744867 100644 --- a/Source/cmGlobalVisualStudio6Generator.cxx +++ b/Source/cmGlobalVisualStudio6Generator.cxx @@ -189,11 +189,9 @@ void cmGlobalVisualStudio6Generator // Collect all targets under this root generator and the transitive // closure of their dependencies. - cmGlobalGenerator::TargetDependSet projectTargets; - cmGlobalGenerator::TargetDependSet originalTargets; - this->GetTargetSets(projectTargets, - originalTargets, - root, generators); + TargetDependSet projectTargets; + TargetDependSet originalTargets; + this->GetTargetSets(projectTargets, originalTargets, root, generators); OrderedTargetDependSet orderedProjectTargets(projectTargets); std::string rootdir = root->GetMakefile()->GetStartOutputDirectory(); -- cgit v1.2.1