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/cmGlobalVisualStudio6Generator.cxx | |
parent | 8876adcd8195c7df17674023dc0de818da0504d9 (diff) | |
download | CMake-d89adbf04980c26a101dd5134224215451bd6455.zip CMake-d89adbf04980c26a101dd5134224215451bd6455.tar.gz CMake-d89adbf04980c26a101dd5134224215451bd6455.tar.bz2 |
remove warnings
Diffstat (limited to 'Source/cmGlobalVisualStudio6Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio6Generator.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/cmGlobalVisualStudio6Generator.cxx b/Source/cmGlobalVisualStudio6Generator.cxx index 171a93b..a42d4b0 100644 --- a/Source/cmGlobalVisualStudio6Generator.cxx +++ b/Source/cmGlobalVisualStudio6Generator.cxx @@ -325,8 +325,7 @@ void cmGlobalVisualStudio6Generator::WriteDSWFile(std::ostream& fout, this->WriteDSWFooter(fout); } -void cmGlobalVisualStudio6Generator::OutputDSWFile(const char* projectName, - std::vector<cmLocalGenerator*>& generators) +void cmGlobalVisualStudio6Generator::OutputDSWFile(std::vector<cmLocalGenerator*>& generators) { if(generators.size() == 0) { @@ -353,7 +352,7 @@ void cmGlobalVisualStudio6Generator::OutputDSWFile() for(it = m_SubProjectMap.begin(); it!= m_SubProjectMap.end(); ++it) { std::vector<cmLocalGenerator*>& gen = it->second; - this->OutputDSWFile(it->first.c_str(), it->second); + this->OutputDSWFile(it->second); } } |