From b37cc6072f50c175b208f4ba1340bf3b8397ccdc Mon Sep 17 00:00:00 2001 From: Alexander Neundorf Date: Tue, 22 May 2007 10:42:37 -0400 Subject: [PATCH] COMP: compile fix and remove warning Alex --- Source/cmAddExecutableCommand.cxx | 2 +- Source/cmGlobalVisualStudio6Generator.cxx | 2 +- Source/cmGlobalVisualStudio71Generator.cxx | 3 +-- Source/cmGlobalVisualStudio7Generator.cxx | 3 +-- 4 files changed, 4 insertions(+), 6 deletions(-) diff --git a/Source/cmAddExecutableCommand.cxx b/Source/cmAddExecutableCommand.cxx index ad2044c5e..bc6a2c417 100644 --- a/Source/cmAddExecutableCommand.cxx +++ b/Source/cmAddExecutableCommand.cxx @@ -63,7 +63,7 @@ bool cmAddExecutableCommand::InitialPass(std::vector const& args) if (importTarget) { - cmTarget* target = this->Makefile->AddNewTarget(cmTarget::EXECUTABLE, exename.c_str(), true); + this->Makefile->AddNewTarget(cmTarget::EXECUTABLE, exename.c_str(), true); return true; } diff --git a/Source/cmGlobalVisualStudio6Generator.cxx b/Source/cmGlobalVisualStudio6Generator.cxx index f06c77d8d..13758c563 100644 --- a/Source/cmGlobalVisualStudio6Generator.cxx +++ b/Source/cmGlobalVisualStudio6Generator.cxx @@ -401,7 +401,7 @@ void cmGlobalVisualStudio6Generator::WriteProject(std::ostream& fout, if(j->first != dspname) { // is the library part of this DSW ? If so add dependency - if(this->FindTarget(0, j->first.c_str()), false) + if(this->FindTarget(0, j->first.c_str(), false)) { fout << "Begin Project Dependency\n"; fout << "Project_Dep_Name " << j->first.c_str() << "\n"; diff --git a/Source/cmGlobalVisualStudio71Generator.cxx b/Source/cmGlobalVisualStudio71Generator.cxx index 523c3e0d5..fe67f01e7 100644 --- a/Source/cmGlobalVisualStudio71Generator.cxx +++ b/Source/cmGlobalVisualStudio71Generator.cxx @@ -334,8 +334,7 @@ cmGlobalVisualStudio71Generator { // is the library part of this SLN ? If so add dependency if(this->FindTarget(this->CurrentProject.c_str(), - j->first.c_str()), - false) + j->first.c_str(), false)) { fout << "\t\t{" << this->GetGUID(j->first.c_str()) << "} = {" << this->GetGUID(j->first.c_str()) << "}\n"; diff --git a/Source/cmGlobalVisualStudio7Generator.cxx b/Source/cmGlobalVisualStudio7Generator.cxx index 2877b7acb..a4d22583b 100644 --- a/Source/cmGlobalVisualStudio7Generator.cxx +++ b/Source/cmGlobalVisualStudio7Generator.cxx @@ -589,8 +589,7 @@ cmGlobalVisualStudio7Generator { // is the library part of this SLN ? If so add dependency if(this->FindTarget(this->CurrentProject.c_str(), - j->first.c_str()), - false) + j->first.c_str(), false)) { std::string guid = this->GetGUID(j->first.c_str()); if(guid.size() == 0)