diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2014-05-19 17:52:56 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2014-05-19 17:52:56 (GMT) |
commit | beccc53e951d86f071dc41aa8ea5a7dced3bf8a7 (patch) | |
tree | 763113c796f25690910d0cb79feeb0bab10820a8 /c++/src | |
parent | 37a1339c04f73a3155cc585f455a49e14189df3c (diff) | |
download | hdf5-beccc53e951d86f071dc41aa8ea5a7dced3bf8a7.zip hdf5-beccc53e951d86f071dc41aa8ea5a7dced3bf8a7.tar.gz hdf5-beccc53e951d86f071dc41aa8ea5a7dced3bf8a7.tar.bz2 |
[svn-r25203] Description:
Made printError() virtual as the original; missed it from the previous fix.
Merged from trunk: r25123
Platforms tested:
Linux/ppc64 (ostrich)
Linux/32 2.6 (jam)
SunOS 5.11 (emu)
Diffstat (limited to 'c++/src')
-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 f16a069..5373150 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(); |