summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio7Generator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2010-12-10 19:33:34 (GMT)
committerBrad King <brad.king@kitware.com>2010-12-10 19:33:34 (GMT)
commit10f01ae962feb68177f7bd698b01bbc18668920c (patch)
tree9279d3e30e4bf35b79d3bb0cef894bdbfed9ffdb /Source/cmGlobalVisualStudio7Generator.cxx
parent57e71533f45601275afd7787d763664f9e6b9536 (diff)
downloadCMake-10f01ae962feb68177f7bd698b01bbc18668920c.zip
CMake-10f01ae962feb68177f7bd698b01bbc18668920c.tar.gz
CMake-10f01ae962feb68177f7bd698b01bbc18668920c.tar.bz2
Remove unused parameter "root" in some VS generator methods
The previous commit removed the last use of this parameter from the implementation of WriteTargetsToSolution. Remove the parameter.
Diffstat (limited to 'Source/cmGlobalVisualStudio7Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio7Generator.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmGlobalVisualStudio7Generator.cxx b/Source/cmGlobalVisualStudio7Generator.cxx
index 6858674..eb84a2c 100644
--- a/Source/cmGlobalVisualStudio7Generator.cxx
+++ b/Source/cmGlobalVisualStudio7Generator.cxx
@@ -270,7 +270,6 @@ void cmGlobalVisualStudio7Generator::WriteTargetConfigurations(
void cmGlobalVisualStudio7Generator::WriteTargetsToSolution(
std::ostream& fout,
- cmLocalGenerator* root,
OrderedTargetDependSet const& projectTargets)
{
for(OrderedTargetDependSet::const_iterator tt =
@@ -386,7 +385,7 @@ void cmGlobalVisualStudio7Generator
this->GetTargetSets(projectTargets, originalTargets, root, generators);
OrderedTargetDependSet orderedProjectTargets(projectTargets);
- this->WriteTargetsToSolution(fout, root, orderedProjectTargets);
+ this->WriteTargetsToSolution(fout, orderedProjectTargets);
bool useFolderProperty = this->UseFolderProperty();
if (useFolderProperty)