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/cmGlobalVisualStudio7Generator.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/cmGlobalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio7Generator.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmGlobalVisualStudio7Generator.cxx b/Source/cmGlobalVisualStudio7Generator.cxx index 2877b7a..a4d2258 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) |