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:
Brad King 2010-08-27 09:56:00 -04:00
parent 79a88c35f8
commit a99f620834
1 changed files with 1 additions and 1 deletions

View File

@ -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];