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:
Gerd Heber
2026-06-25 14:36:32 -05:00
committed by GitHub
co-authored by github-actions
parent b1227f798e
commit a32ec38b6f
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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
View File
@@ -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 */