diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2013-09-25 01:27:32 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2013-09-25 01:27:32 (GMT) |
commit | b3f9cb87869edeca285c6245840f37343483aa89 (patch) | |
tree | 43ccc606633199208d6400efc4e305be0751ab94 | |
parent | 91df66782ea03416f4dae1a8171ede49fb016725 (diff) | |
download | hdf5-b3f9cb87869edeca285c6245840f37343483aa89.zip hdf5-b3f9cb87869edeca285c6245840f37343483aa89.tar.gz hdf5-b3f9cb87869edeca285c6245840f37343483aa89.tar.bz2 |
[svn-r24197] revert a changed committed by mistake, printf statement
-rw-r--r-- | c++/src/H5Exception.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/c++/src/H5Exception.cpp b/c++/src/H5Exception.cpp index ac1f506..8513372 100644 --- a/c++/src/H5Exception.cpp +++ b/c++/src/H5Exception.cpp @@ -330,9 +330,7 @@ FileIException::FileIException():Exception(){} ///\param func_name - IN: Name of the function where failure occurs ///\param message - IN: Message on the failure //-------------------------------------------------------------------------- -FileIException::FileIException(const H5std_string& func_name, const H5std_string& message) : Exception(func_name, message) { - fprintf(stderr, "FileIException::FileIException is thrown, <%s> <%s>\n", func_name.c_str(), message.c_str()); - } +FileIException::FileIException(const H5std_string& func_name, const H5std_string& message) : Exception(func_name, message) {} //-------------------------------------------------------------------------- // Function: FileIException destructor ///\brief Noop destructor. |