diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2003-11-26 21:04:01 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2003-11-26 21:04:01 (GMT) |
commit | 6e9a96119c0dd3c4fea12ceba6ed066521dc1c8d (patch) | |
tree | 31b3ab8bbd43057a923d083a74b6678e8eb86266 /Source/cmGlobalVisualStudio7Generator.cxx | |
parent | 9a58ac6649a9e12e06306a7d23aaaf767dea0e64 (diff) | |
download | CMake-6e9a96119c0dd3c4fea12ceba6ed066521dc1c8d.zip CMake-6e9a96119c0dd3c4fea12ceba6ed066521dc1c8d.tar.gz CMake-6e9a96119c0dd3c4fea12ceba6ed066521dc1c8d.tar.bz2 |
ENH: fix some warnings
Diffstat (limited to 'Source/cmGlobalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio7Generator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalVisualStudio7Generator.cxx b/Source/cmGlobalVisualStudio7Generator.cxx index 0d0eade..81d4219 100644 --- a/Source/cmGlobalVisualStudio7Generator.cxx +++ b/Source/cmGlobalVisualStudio7Generator.cxx @@ -392,7 +392,7 @@ void cmGlobalVisualStudio7Generator::WriteSLNFile(std::ostream& fout, && (l->second.GetType() != cmTarget::INSTALL_PROGRAMS)) { bool skip = false; - if(l->first == "ALL_BUILD" ) + if(l->first == "ALL_BUILD" ) { if(doneAllBuild) { @@ -662,7 +662,7 @@ void cmGlobalVisualStudio7Generator::CollectSubprojects() m_SubProjectMap[name].push_back(m_LocalGenerators[i]); std::vector<std::string> const& pprojects = m_LocalGenerators[i]->GetMakefile()->GetParentProjects(); - for(int k =0; k < pprojects.size(); ++k) + for(unsigned int k =0; k < pprojects.size(); ++k) { m_SubProjectMap[pprojects[k]].push_back(m_LocalGenerators[i]); } |