diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2003-11-26 21:12:52 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2003-11-26 21:12:52 (GMT) |
commit | d89adbf04980c26a101dd5134224215451bd6455 (patch) | |
tree | 51f763aa934d2bbccda3d364beff1a81ae536118 /Source/cmGlobalVisualStudio7Generator.cxx | |
parent | 8876adcd8195c7df17674023dc0de818da0504d9 (diff) | |
download | CMake-d89adbf04980c26a101dd5134224215451bd6455.zip CMake-d89adbf04980c26a101dd5134224215451bd6455.tar.gz CMake-d89adbf04980c26a101dd5134224215451bd6455.tar.bz2 |
remove warnings
Diffstat (limited to 'Source/cmGlobalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio7Generator.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/cmGlobalVisualStudio7Generator.cxx b/Source/cmGlobalVisualStudio7Generator.cxx index 81d4219..42fa6dc 100644 --- a/Source/cmGlobalVisualStudio7Generator.cxx +++ b/Source/cmGlobalVisualStudio7Generator.cxx @@ -269,8 +269,7 @@ void cmGlobalVisualStudio7Generator::Generate() this->OutputSLNFile(); } -void cmGlobalVisualStudio7Generator::OutputSLNFile(const char* projectName, - std::vector<cmLocalGenerator*>& generators) +void cmGlobalVisualStudio7Generator::OutputSLNFile(std::vector<cmLocalGenerator*>& generators) { if(generators.size() == 0) { @@ -297,7 +296,7 @@ void cmGlobalVisualStudio7Generator::OutputSLNFile() for(it = m_SubProjectMap.begin(); it!= m_SubProjectMap.end(); ++it) { std::vector<cmLocalGenerator*>& gen = it->second; - this->OutputSLNFile(it->first.c_str(), it->second); + this->OutputSLNFile(it->second); } } |