summaryrefslogtreecommitdiffstats
path: root/c++/src/H5Library.cpp
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2020-04-28 13:10:57 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2020-04-28 13:11:08 (GMT)
commit14559ac4bd689a3b63ea578da617821e89e6427f (patch)
tree5fa943249fb03fa562030c9b6d8b991f0f022fe4 /c++/src/H5Library.cpp
parent159c4ded7b430a24f3bd25aa9abaee67e0183886 (diff)
downloadhdf5-14559ac4bd689a3b63ea578da617821e89e6427f.zip
hdf5-14559ac4bd689a3b63ea578da617821e89e6427f.tar.gz
hdf5-14559ac4bd689a3b63ea578da617821e89e6427f.tar.bz2
Correct -Werror=unused-variable
Diffstat (limited to 'c++/src/H5Library.cpp')
-rw-r--r--c++/src/H5Library.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/src/H5Library.cpp b/c++/src/H5Library.cpp
index 3813b79..6cf89ae 100644
--- a/c++/src/H5Library.cpp
+++ b/c++/src/H5Library.cpp
@@ -82,7 +82,7 @@ void H5Library::close()
//--------------------------------------------------------------------------
void H5Library::dontAtExit()
{
- herr_t ret_value = H5dont_atexit();
+ (void)H5dont_atexit();
}
//--------------------------------------------------------------------------