remove warnings
This commit is contained in:
parent
8876adcd81
commit
d89adbf049
@ -325,8 +325,7 @@ void cmGlobalVisualStudio6Generator::WriteDSWFile(std::ostream& fout,
|
|||||||
this->WriteDSWFooter(fout);
|
this->WriteDSWFooter(fout);
|
||||||
}
|
}
|
||||||
|
|
||||||
void cmGlobalVisualStudio6Generator::OutputDSWFile(const char* projectName,
|
void cmGlobalVisualStudio6Generator::OutputDSWFile(std::vector<cmLocalGenerator*>& generators)
|
||||||
std::vector<cmLocalGenerator*>& generators)
|
|
||||||
{
|
{
|
||||||
if(generators.size() == 0)
|
if(generators.size() == 0)
|
||||||
{
|
{
|
||||||
@ -353,7 +352,7 @@ void cmGlobalVisualStudio6Generator::OutputDSWFile()
|
|||||||
for(it = m_SubProjectMap.begin(); it!= m_SubProjectMap.end(); ++it)
|
for(it = m_SubProjectMap.begin(); it!= m_SubProjectMap.end(); ++it)
|
||||||
{
|
{
|
||||||
std::vector<cmLocalGenerator*>& gen = it->second;
|
std::vector<cmLocalGenerator*>& gen = it->second;
|
||||||
this->OutputDSWFile(it->first.c_str(), it->second);
|
this->OutputDSWFile(it->second);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -68,7 +68,7 @@ public:
|
|||||||
* Generate the DSW workspace file.
|
* Generate the DSW workspace file.
|
||||||
*/
|
*/
|
||||||
virtual void OutputDSWFile();
|
virtual void OutputDSWFile();
|
||||||
virtual void OutputDSWFile(const char* projectName, std::vector<cmLocalGenerator*>& generators);
|
virtual void OutputDSWFile(std::vector<cmLocalGenerator*>& generators);
|
||||||
virtual void WriteDSWFile(std::ostream& fout,
|
virtual void WriteDSWFile(std::ostream& fout,
|
||||||
std::vector<cmLocalGenerator*>& generators);
|
std::vector<cmLocalGenerator*>& generators);
|
||||||
private:
|
private:
|
||||||
|
@ -269,8 +269,7 @@ void cmGlobalVisualStudio7Generator::Generate()
|
|||||||
this->OutputSLNFile();
|
this->OutputSLNFile();
|
||||||
}
|
}
|
||||||
|
|
||||||
void cmGlobalVisualStudio7Generator::OutputSLNFile(const char* projectName,
|
void cmGlobalVisualStudio7Generator::OutputSLNFile(std::vector<cmLocalGenerator*>& generators)
|
||||||
std::vector<cmLocalGenerator*>& generators)
|
|
||||||
{
|
{
|
||||||
if(generators.size() == 0)
|
if(generators.size() == 0)
|
||||||
{
|
{
|
||||||
@ -297,7 +296,7 @@ void cmGlobalVisualStudio7Generator::OutputSLNFile()
|
|||||||
for(it = m_SubProjectMap.begin(); it!= m_SubProjectMap.end(); ++it)
|
for(it = m_SubProjectMap.begin(); it!= m_SubProjectMap.end(); ++it)
|
||||||
{
|
{
|
||||||
std::vector<cmLocalGenerator*>& gen = it->second;
|
std::vector<cmLocalGenerator*>& gen = it->second;
|
||||||
this->OutputSLNFile(it->first.c_str(), it->second);
|
this->OutputSLNFile(it->second);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -83,8 +83,7 @@ public:
|
|||||||
|
|
||||||
protected:
|
protected:
|
||||||
void CollectSubprojects();
|
void CollectSubprojects();
|
||||||
void OutputSLNFile(const char* projectName,
|
virtual void OutputSLNFile(std::vector<cmLocalGenerator*>& generators);
|
||||||
std::vector<cmLocalGenerator*>& generators);
|
|
||||||
virtual void WriteSLNFile(std::ostream& fout, std::vector<cmLocalGenerator*>& generators);
|
virtual void WriteSLNFile(std::ostream& fout, std::vector<cmLocalGenerator*>& generators);
|
||||||
virtual void WriteProject(std::ostream& fout,
|
virtual void WriteProject(std::ostream& fout,
|
||||||
const char* name, const char* path,
|
const char* name, const char* path,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user