diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-04-01 19:37:59 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-04-01 19:37:59 (GMT) |
commit | d34c342b11887740343eb871648ce2f7bdf74eb0 (patch) | |
tree | e0886b3538b28668746bce444e5f77d32b9c5ccd /Source | |
parent | dd9241121d4b270564174f67672c31c0bf07cde8 (diff) | |
download | CMake-d34c342b11887740343eb871648ce2f7bdf74eb0.zip CMake-d34c342b11887740343eb871648ce2f7bdf74eb0.tar.gz CMake-d34c342b11887740343eb871648ce2f7bdf74eb0.tar.bz2 |
BUG: Fix bug on windows. You cannot cout std::string directly
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmCTest.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index 6f984f6..13d3e48 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -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; } |