Remove warning

This commit is contained in:
Andy Cedilnik 2002-12-10 13:36:37 -05:00
parent f03d370ee7
commit 238815fe19
1 changed files with 4 additions and 2 deletions

View File

@ -932,8 +932,10 @@ int ctest::CoverageDirectory()
<< "\t\t<Report>" << std::endl;
for ( cc = 0; cc < lines.size(); cc ++ )
{
cfileoutput << "\t\t<Line Number=\"" << cc << "\" Count=\""
<< cov.m_Lines[cc] << "\">" << lines[cc] << "</Line>" << std::endl;
cfileoutput << "\t\t<Line Number=\""
<< static_cast<int>(cc) << "\" Count=\""
<< cov.m_Lines[cc] << "\">"
<< lines[cc] << "</Line>" << std::endl;
}
cfileoutput << "\t\t</Report>\n"
<< "\t</File>" << std::endl;