diff options
Diffstat (limited to 'c++/src/H5Group.cpp')
-rw-r--r-- | c++/src/H5Group.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/c++/src/H5Group.cpp b/c++/src/H5Group.cpp index b8cc4a4..f805778 100644 --- a/c++/src/H5Group.cpp +++ b/c++/src/H5Group.cpp @@ -13,6 +13,11 @@ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #include <string> +#ifdef OLD_HEADER_FILENAME +#include <iostream.h> +#else +#include <iostream> +#endif #include "H5Include.h" #include "H5RefCounter.h" @@ -151,7 +156,7 @@ Group::~Group() try { resetIdComponent( this ); } catch (Exception close_error) { // thrown by p_close - throw GroupIException("Group::~Group", close_error.getDetailMsg()); + cerr << "Group::~Group" << close_error.getDetailMsg() << endl; } } |