BUG: Fix bug on windows. You cannot cout std::string directly
This commit is contained in:
parent
dd9241121d
commit
d34c342b11
|
@ -2992,7 +2992,7 @@ std::string cmCTest::GenerateRegressionImages(const std::string& xml)
|
||||||
<< "\t\t\t<NamedMeasurement"
|
<< "\t\t\t<NamedMeasurement"
|
||||||
<< " name=\"" << measurementfile.match(idx) << "\""
|
<< " name=\"" << measurementfile.match(idx) << "\""
|
||||||
<< " text=\"text/string\""
|
<< " text=\"text/string\""
|
||||||
<< "><Value>File " << filename << " not found</Value></NamedMeasurement>"
|
<< "><Value>File " << filename.c_str() << " not found</Value></NamedMeasurement>"
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
std::cout << "File \"" << filename.c_str() << "\" not found." << std::endl;
|
std::cout << "File \"" << filename.c_str() << "\" not found." << std::endl;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue