ENH: fix warning

This commit is contained in:
Bill Hoffman 2004-04-13 18:27:53 -04:00
parent b1032dd8e1
commit e61aa37cdf
1 changed files with 1 additions and 1 deletions

View File

@ -4887,7 +4887,7 @@ void cmCTest::SetTestsToRunInformation(const char* in)
std::unique(m_TestsToRun.begin(), m_TestsToRun.end());
m_TestsToRun.erase(new_end, m_TestsToRun.end());
std::cout << "Running tests: ";
for(int i =0; i < m_TestsToRun.size(); ++i)
for(unsigned int i =0; i < m_TestsToRun.size(); ++i)
{
std::cout << m_TestsToRun[i] << " ";
}