summaryrefslogtreecommitdiffstats
path: root/c++/test/h5cpputil.h
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2006-04-05 16:50:56 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2006-04-05 16:50:56 (GMT)
commite36db373ef271a1e4e87c891942b24701941863a (patch)
treeaef50159182e8234d54cd2e1b426c8bdd0f1a52b /c++/test/h5cpputil.h
parent69a959c55bb4f1f3e5f1f44d93a56380c0e28889 (diff)
downloadhdf5-e36db373ef271a1e4e87c891942b24701941863a.zip
hdf5-e36db373ef271a1e4e87c891942b24701941863a.tar.gz
hdf5-e36db373ef271a1e4e87c891942b24701941863a.tar.bz2
[svn-r12202] Purpose: Maintenance
Description: Changed to alias string instead of std, i.e. H5std_string instead of H5std, because the old way wasn't working when std didn't exist. Platforms tested: Linux 2.4 (heping) SunOS 5.8 64-bit (sol) HPUX 11.00 (kelgia) - this was the problematic platform but I wasn't able to test before.
Diffstat (limited to 'c++/test/h5cpputil.h')
-rw-r--r--c++/test/h5cpputil.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/c++/test/h5cpputil.h b/c++/test/h5cpputil.h
index abd076a..0173d2f 100644
--- a/c++/test/h5cpputil.h
+++ b/c++/test/h5cpputil.h
@@ -34,7 +34,7 @@ using std::cerr;
using std::endl;
#endif
-int test_report (int, const string&);
+int test_report (int, const H5std_string&);
void issue_fail_msg(const char* where, int line, const char* file_name,
const char* message="");
@@ -70,7 +70,7 @@ template <class Type1, class Type2>
class InvalidActionException : public Exception {
public:
- InvalidActionException(const string func_name, const string message = DEFAULT_MSG);
+ InvalidActionException(const H5std_string func_name, const H5std_string message = DEFAULT_MSG);
InvalidActionException();
virtual ~InvalidActionException();
};