diff options
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]); } |