diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-05-22 14:42:37 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-05-22 14:42:37 (GMT) |
commit | b37cc6072f50c175b208f4ba1340bf3b8397ccdc (patch) | |
tree | c498879b3fadd6c37df16be99ad7fda886bb7005 /Source/cmGlobalVisualStudio71Generator.cxx | |
parent | 4878c009057cf410fff98d8450e1e7cd2b3072ae (diff) | |
download | CMake-b37cc6072f50c175b208f4ba1340bf3b8397ccdc.zip CMake-b37cc6072f50c175b208f4ba1340bf3b8397ccdc.tar.gz CMake-b37cc6072f50c175b208f4ba1340bf3b8397ccdc.tar.bz2 |
COMP: compile fix and remove warning
Alex
Diffstat (limited to 'Source/cmGlobalVisualStudio71Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio71Generator.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmGlobalVisualStudio71Generator.cxx b/Source/cmGlobalVisualStudio71Generator.cxx index 523c3e0..fe67f01 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"; |