Skip to content

Commit

Permalink
Remove the mentioning of specific operations in a common place.
Browse files Browse the repository at this point in the history
  • Loading branch information
bmribler committed Mar 27, 2024
1 parent 8ed5aa6 commit 9424e3f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/H5Mpublic.h
Original file line number Diff line number Diff line change
Expand Up @@ -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) */
Expand All @@ -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 */
Expand Down

0 comments on commit 9424e3f

Please sign in to comment.