From 9424e3f455fcddc315d00a5a675b35de8e510da0 Mon Sep 17 00:00:00 2001 From: Binh-Minh Date: Wed, 27 Mar 2024 17:47:18 -0400 Subject: [PATCH] Remove the mentioning of specific operations in a common place. --- src/H5Mpublic.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/H5Mpublic.h b/src/H5Mpublic.h index 96617febce5..2931e2bf1eb 100644 --- a/src/H5Mpublic.h +++ b/src/H5Mpublic.h @@ -156,11 +156,11 @@ typedef union H5VL_map_args_t { /** H5VL_MAP_SPECIFIC */ struct { H5VL_map_specific_t specific_type; - /**< 'specific' operation to perform, which are 'iterate' and 'del' currently */ + /**< 'specific' operation to perform */ /** Parameters for each operation */ union { - /* H5VL_MAP_ITER */ + /* H5VL_MAP_ITER specific operation */ struct { H5VL_loc_params_t loc_params; /**< Location parameters for object */ hsize_t idx; /**< Start/end iteration index (IN/OUT) */ @@ -169,7 +169,7 @@ typedef union H5VL_map_args_t { void *op_data; /**< Pointer to callback context */ } iterate; - /* H5VL_MAP_DELETE */ + /* H5VL_MAP_DELETE specific operation */ struct { H5VL_loc_params_t loc_params; /**< Location parameters for object */ hid_t key_mem_type_id; /**< Memory datatype for key */