summaryrefslogtreecommitdiffstats
path: root/src/H5Epublic.h
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2021-08-25 23:43:13 (GMT)
committerGitHub <noreply@github.com>2021-08-25 23:43:13 (GMT)
commit1bf72bee1c9a5b8c9280aadee6e5d940a7a1c1ca (patch)
tree6c3bab304ee5f16a460b2637e0632a6bc7cd7dc6 /src/H5Epublic.h
parent56dcd1badcc2b7ffacfbc606bda40c86c4812aee (diff)
downloadhdf5-1bf72bee1c9a5b8c9280aadee6e5d940a7a1c1ca.zip
hdf5-1bf72bee1c9a5b8c9280aadee6e5d940a7a1c1ca.tar.gz
hdf5-1bf72bee1c9a5b8c9280aadee6e5d940a7a1c1ca.tar.bz2
Merge clang-tidy changes to public headers (#962)
Diffstat (limited to 'src/H5Epublic.h')
-rw-r--r--src/H5Epublic.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Epublic.h b/src/H5Epublic.h
index 2f529b3..e0aecac 100644
--- a/src/H5Epublic.h
+++ b/src/H5Epublic.h
@@ -24,7 +24,7 @@
#include "H5Ipublic.h"
/* Value for the default error stack */
-#define H5E_DEFAULT (hid_t)0
+#define H5E_DEFAULT 0 /* (hid_t) */
/**
* Different kinds of error information
@@ -38,9 +38,9 @@ typedef struct H5E_error2_t {
hid_t cls_id;
/**< Class ID */
hid_t maj_num;
- /**< Major error ID */
+ /**< Major error ID */
hid_t min_num;
- /**< Minor error number */
+ /**< Minor error number */
unsigned line;
/**< Line in file where error occurs */
const char *func_name;