summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2004-04-01 19:37:59 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2004-04-01 19:37:59 (GMT)
commitd34c342b11887740343eb871648ce2f7bdf74eb0 (patch)
treee0886b3538b28668746bce444e5f77d32b9c5ccd /Source
parentdd9241121d4b270564174f67672c31c0bf07cde8 (diff)
downloadCMake-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.cxx2
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;
}