summaryrefslogtreecommitdiffstats
path: root/Source/ctest.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-10-07 00:44:29 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-10-07 00:44:29 (GMT)
commit088709e99fa56e19cd73ff614bc508f908dd9b49 (patch)
treeb7f9d2c263a3e243c563e198ed85a590db97e7dd /Source/ctest.cxx
parenta8bd7f1ff68e1ba4e0cf1a895c05774e7c34b9ac (diff)
downloadCMake-088709e99fa56e19cd73ff614bc508f908dd9b49.zip
CMake-088709e99fa56e19cd73ff614bc508f908dd9b49.tar.gz
CMake-088709e99fa56e19cd73ff614bc508f908dd9b49.tar.bz2
Add missing namespace
Diffstat (limited to 'Source/ctest.cxx')
-rw-r--r--Source/ctest.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/ctest.cxx b/Source/ctest.cxx
index 8fda9cb..c912010 100644
--- a/Source/ctest.cxx
+++ b/Source/ctest.cxx
@@ -191,7 +191,7 @@ void ctest::Finalize()
}
}
std::string testxml = testingDir + "/Test.xml";
- ofstream ofs(testxml.c_str());
+ std::ofstream ofs(testxml.c_str());
if( !ofs )
{
std::cerr << "Cannot create testing XML file" << std::endl;