warning fix hopefully

This commit is contained in:
Ken Martin 2003-04-17 11:59:26 -04:00
parent 6bb35a4d88
commit b14eb941d3
1 changed files with 3 additions and 3 deletions

View File

@ -203,8 +203,8 @@ void cmLocalCodeWarriorGenerator::WriteSettingList(std::ostream& fout,
} }
} }
std::vector<std::string>& links = l->GetLinkDirectories(); const std::vector<std::string>& links = l->GetLinkDirectories();
std::vector<std::string>::iterator j = links.begin(); std::vector<std::string>::const_iterator j = links.begin();
for(;j != links.end(); ++j) for(;j != links.end(); ++j)
{ {
fout << "<SETTING>\n"; fout << "<SETTING>\n";
@ -521,7 +521,7 @@ void cmLocalCodeWarriorGenerator::WriteSettingList(std::ostream& fout,
fout << "<SETTING><NAME>MWProject_MachO_outfile</NAME><VALUE>"; fout << "<SETTING><NAME>MWProject_MachO_outfile</NAME><VALUE>";
fout << m_TargetOutputFiles[std::string(tgtName)]; fout << m_TargetOutputFiles[std::string(tgtName)];
fout << "</VALUE></SETTING>\n"; fout << "</VALUE></SETTING>\n";
fout << "<SETTING><NAME>MWProject_MachO_filecreator</NAME><VALUE>????</VALUE></SETTING>\n"; fout << "<SETTING><NAME>MWProject_MachO_filecreator</NAME><VALUE>????" << "</VALUE></SETTING>\n";
fout << "<SETTING><NAME>MWProject_MachO_filetype</NAME><VALUE>"; fout << "<SETTING><NAME>MWProject_MachO_filetype</NAME><VALUE>";
fout << targetOutputType; fout << targetOutputType;
fout << "</VALUE></SETTING>\n"; fout << "</VALUE></SETTING>\n";