mirror of
https://github.com/HDFGroup/hdf5.git
synced 2026-09-25 04:09:44 +03:00
Muffle unused parameter warnings. (#6482)
* Muffle unused parameter warnings. * Committing clang-format changes --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
co-authored by
github-actions
parent
b1227f798e
commit
a32ec38b6f
+1
-1
@@ -1040,7 +1040,7 @@ done:
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static herr_t
|
||||
H5G__get_name_by_addr_cb(hid_t gid, const char *path, const H5O_loc_t *obj_oloc, void *_udata)
|
||||
H5G__get_name_by_addr_cb(hid_t H5_ATTR_UNUSED gid, const char *path, const H5O_loc_t *obj_oloc, void *_udata)
|
||||
{
|
||||
H5G_gnba_iter_t *udata = (H5G_gnba_iter_t *)_udata; /* User data for iteration */
|
||||
herr_t ret_value = H5_ITER_CONT; /* Return value */
|
||||
|
||||
+2
-2
@@ -1343,8 +1343,8 @@ done:
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static herr_t
|
||||
H5O__copy_search_comm_dt_cb(hid_t H5_ATTR_UNUSED group, const char *name, const H5O_loc_t *obj_oloc,
|
||||
void *_udata)
|
||||
H5O__copy_search_comm_dt_cb(hid_t H5_ATTR_UNUSED group, const char H5_ATTR_UNUSED *name,
|
||||
const H5O_loc_t *obj_oloc, void *_udata)
|
||||
{
|
||||
H5O_copy_search_comm_dt_ud_t *udata =
|
||||
(H5O_copy_search_comm_dt_ud_t *)_udata; /* Skip list of dtypes in dest file */
|
||||
|
||||
Reference in New Issue
Block a user