diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2012-06-26 20:56:59 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2012-06-26 20:56:59 (GMT) |
commit | 97da6adcd0ea493e018c763169440fa9f17d39f5 (patch) | |
tree | 6c31c8fa61ea358608fefb9b64e5632e0626f2ac /c++ | |
parent | 35936e66b7504fba393e0a3c9519ab29c187a4df (diff) | |
download | hdf5-97da6adcd0ea493e018c763169440fa9f17d39f5.zip hdf5-97da6adcd0ea493e018c763169440fa9f17d39f5.tar.gz hdf5-97da6adcd0ea493e018c763169440fa9f17d39f5.tar.bz2 |
[svn-r22492] Needed std:: for cout or cerr for other compilers.
Diffstat (limited to 'c++')
-rw-r--r-- | c++/test/tfile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/test/tfile.cpp b/c++/test/tfile.cpp index 616c514..df01752 100644 --- a/c++/test/tfile.cpp +++ b/c++/test/tfile.cpp @@ -167,7 +167,7 @@ static void test_file_create() catch( FileIException E ) // catching H5F_ACC_EXCL on existing file {} // do nothing, FAIL expected */ - cout << "SKIPPED for HDFFV-8067" << endl; + std::cerr << "SKIPPED for HDFFV-8067" << std::endl; // Get the file-creation template FileCreatPropList tmpl1 = file1->getCreatePlist(); |