mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-11 08:20:18 -06:00
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.
This commit is contained in:
@@ -110,7 +110,7 @@ void cmGlobalVisualStudio71Generator
|
||||
this->GetTargetSets(projectTargets, originalTargets, root, generators);
|
||||
OrderedTargetDependSet orderedProjectTargets(projectTargets);
|
||||
|
||||
this->WriteTargetsToSolution(fout, root, orderedProjectTargets);
|
||||
this->WriteTargetsToSolution(fout, orderedProjectTargets);
|
||||
|
||||
bool useFolderProperty = this->UseFolderProperty();
|
||||
if (useFolderProperty)
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -118,7 +118,6 @@ protected:
|
||||
|
||||
virtual void WriteTargetsToSolution(
|
||||
std::ostream& fout,
|
||||
cmLocalGenerator* root,
|
||||
OrderedTargetDependSet const& projectTargets);
|
||||
virtual void WriteTargetDepends(
|
||||
std::ostream& fout,
|
||||
|
||||
Reference in New Issue
Block a user