BUG: Fix bug on windows. You cannot cout std::string directly

This commit is contained in:
Andy Cedilnik 2004-04-01 14:37:59 -05:00
parent dd9241121d
commit d34c342b11
1 changed files with 1 additions and 1 deletions

View File

@ -2992,7 +2992,7 @@ std::string cmCTest::GenerateRegressionImages(const std::string& xml)
<< "\t\t\t<NamedMeasurement"
<< " name=\"" << measurementfile.match(idx) << "\""
<< " text=\"text/string\""
<< "><Value>File " << filename << " not found</Value></NamedMeasurement>"
<< "><Value>File " << filename.c_str() << " not found</Value></NamedMeasurement>"
<< std::endl;
std::cout << "File \"" << filename.c_str() << "\" not found." << std::endl;
}