Fix unused parameter warning in VS 7.1 generator
The cmGlobalVisualStudio71Generator::WriteProjectDepends method no longer uses its 'dspname' parameter. Leave off the name to avoid the unused parameter warning. Later we should refactor the method to avoid passing the argument altogether.
This commit is contained in:
parent
79a88c35f8
commit
a99f620834
|
@ -197,7 +197,7 @@ cmGlobalVisualStudio71Generator::WriteProject(std::ostream& fout,
|
|||
void
|
||||
cmGlobalVisualStudio71Generator
|
||||
::WriteProjectDepends(std::ostream& fout,
|
||||
const char* dspname,
|
||||
const char*,
|
||||
const char*, cmTarget& target)
|
||||
{
|
||||
VSDependSet const& depends = this->VSTargetDepends[&target];
|
||||
|
|
Loading…
Reference in New Issue