summaryrefslogtreecommitdiffstats
path: root/test/gen_specmetaread.c
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2020-02-19 15:38:02 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-02-19 15:38:02 (GMT)
commit7b4131c2ae997f8e870ed57a9fca2f7f6d3ea233 (patch)
tree39039e0a303502b831ca50305661ad714221d66d /test/gen_specmetaread.c
parent47b79b7422c91e53ae5d87bcda45d52798a64fb6 (diff)
parent50aac126d7c4082c2aeb0f3a68cad26bd1cd9783 (diff)
downloadhdf5-7b4131c2ae997f8e870ed57a9fca2f7f6d3ea233.zip
hdf5-7b4131c2ae997f8e870ed57a9fca2f7f6d3ea233.tar.gz
hdf5-7b4131c2ae997f8e870ed57a9fca2f7f6d3ea233.tar.bz2
Merge pull request #2367 in HDFFV/hdf5 from ~DYOUNG/werror:unused to develop
* commit '50aac126d7c4082c2aeb0f3a68cad26bd1cd9783': Start to document the function/parameter/variable attribute macros. Filter all of the new _USED / _UNUSED type modifiers. H5_HAVE_PARALLEL, _DEBUG_API, etc. Add attributes to some variables and parameters that are unused under some configurations.
Diffstat (limited to 'test/gen_specmetaread.c')
-rw-r--r--test/gen_specmetaread.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/gen_specmetaread.c b/test/gen_specmetaread.c
index d06bd59..fd484d1 100644
--- a/test/gen_specmetaread.c
+++ b/test/gen_specmetaread.c
@@ -23,9 +23,10 @@
* the library on the trunk as of when this file is checked in.
*/
-#include "hdf5.h"
#include <assert.h>
+#include "testhdf5.h"
+
#define FILENAME "specmetaread.h5"
#define DIM 10
@@ -39,7 +40,7 @@ main(void)
hsize_t dim[1] = {DIM};
unsigned data[DIM];
unsigned u;
- herr_t ret; /* Generic return value */
+ herr_t H5_ATTR_NDEBUG_UNUSED ret;
/* Initialize the data */
for(u = 0; u < DIM; u++)