diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2003-11-26 21:15:18 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2003-11-26 21:15:18 (GMT) |
commit | 587370e1e28e014d1d1a4a31d8332c2c3181315f (patch) | |
tree | ae927430d524a919319e50d7c8f91cb6711b4f99 | |
parent | d89adbf04980c26a101dd5134224215451bd6455 (diff) | |
download | CMake-587370e1e28e014d1d1a4a31d8332c2c3181315f.zip CMake-587370e1e28e014d1d1a4a31d8332c2c3181315f.tar.gz CMake-587370e1e28e014d1d1a4a31d8332c2c3181315f.tar.bz2 |
remove more warnings
-rw-r--r-- | Source/cmGlobalVisualStudio6Generator.cxx | 1 | ||||
-rw-r--r-- | Source/cmGlobalVisualStudio7Generator.cxx | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/Source/cmGlobalVisualStudio6Generator.cxx b/Source/cmGlobalVisualStudio6Generator.cxx index a42d4b0..ca53dbb 100644 --- a/Source/cmGlobalVisualStudio6Generator.cxx +++ b/Source/cmGlobalVisualStudio6Generator.cxx @@ -351,7 +351,6 @@ void cmGlobalVisualStudio6Generator::OutputDSWFile() std::map<cmStdString, std::vector<cmLocalGenerator*> >::iterator it; for(it = m_SubProjectMap.begin(); it!= m_SubProjectMap.end(); ++it) { - std::vector<cmLocalGenerator*>& gen = it->second; this->OutputDSWFile(it->second); } } diff --git a/Source/cmGlobalVisualStudio7Generator.cxx b/Source/cmGlobalVisualStudio7Generator.cxx index 42fa6dc..07e0337 100644 --- a/Source/cmGlobalVisualStudio7Generator.cxx +++ b/Source/cmGlobalVisualStudio7Generator.cxx @@ -295,7 +295,6 @@ void cmGlobalVisualStudio7Generator::OutputSLNFile() std::map<cmStdString, std::vector<cmLocalGenerator*> >::iterator it; for(it = m_SubProjectMap.begin(); it!= m_SubProjectMap.end(); ++it) { - std::vector<cmLocalGenerator*>& gen = it->second; this->OutputSLNFile(it->second); } } |