diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2014-04-26 15:12:48 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2014-04-26 15:12:48 (GMT) |
commit | 6f46f2548670db49845a321fd592a2b37875f8de (patch) | |
tree | 2393f4354fb528bed68f31399fa4d05f4694b991 /c++ | |
parent | 3fde3a16b5fa3c724f073660ebdc8686805c3921 (diff) | |
download | hdf5-6f46f2548670db49845a321fd592a2b37875f8de.zip hdf5-6f46f2548670db49845a321fd592a2b37875f8de.tar.gz hdf5-6f46f2548670db49845a321fd592a2b37875f8de.tar.bz2 |
[svn-r25125] Description:
Made printError() virtual as the original; missed it from the previous fix.
Platforms tested:
Linux/ppc64 (ostrich)
Linux/32 2.6 (jam)
SunOS 5.11 (emu)
Diffstat (limited to 'c++')
-rw-r--r-- | c++/src/H5Exception.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/src/H5Exception.h b/c++/src/H5Exception.h index ce35fde..639b633 100644 --- a/c++/src/H5Exception.h +++ b/c++/src/H5Exception.h @@ -74,7 +74,7 @@ class H5_DLLCPP Exception { // Prints the error stack in a default manner. static void printErrorStack(FILE* stream = stderr, hid_t err_stack = H5E_DEFAULT); // Static - void printError(FILE* stream = NULL) const; + virtual void printError(FILE* stream = NULL) const; // Default constructor Exception(); |