diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1999-08-10 18:54:06 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1999-08-10 18:54:06 (GMT) |
commit | 7d949c9da91b33955d4e253c1093a4f23fb63523 (patch) | |
tree | be3c9712212895401ff6798a99c3ddf1bfe3fd08 /src/H5Snone.c | |
parent | 03efcfe00f186cac97bcccfae52d3c1dd4091742 (diff) | |
download | hdf5-7d949c9da91b33955d4e253c1093a4f23fb63523.zip hdf5-7d949c9da91b33955d4e253c1093a4f23fb63523.tar.gz hdf5-7d949c9da91b33955d4e253c1093a4f23fb63523.tar.bz2 |
[svn-r1566] Changed C++ "operator" keyword to "op"
Diffstat (limited to 'src/H5Snone.c')
-rw-r--r-- | src/H5Snone.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5Snone.c b/src/H5Snone.c index cb5ede3..75f1543 100644 --- a/src/H5Snone.c +++ b/src/H5Snone.c @@ -106,11 +106,11 @@ done: element. (i.e. the user's function is not called because there are zero elements selected) USAGE - herr_t H5S_none_select_iterate(buf, type_id, space, operator, operator_data) + herr_t H5S_none_select_iterate(buf, type_id, space, op, operator_data) void *buf; IN/OUT: Buffer containing elements to iterate over hid_t type_id; IN: Datatype ID of BUF array. H5S_t *space; IN: Dataspace object containing selection to iterate over - H5D_operator_t operator; IN: Function pointer to the routine to be + H5D_operator_t op; IN: Function pointer to the routine to be called for each element in BUF iterated over. void *operator_data; IN/OUT: Pointer to any user-defined data associated with the operation. @@ -123,7 +123,7 @@ done: REVISION LOG --------------------------------------------------------------------------*/ herr_t -H5S_none_select_iterate(void *buf, hid_t type_id, H5S_t *space, H5D_operator_t operator, +H5S_none_select_iterate(void *buf, hid_t type_id, H5S_t *space, H5D_operator_t op, void UNUSED *operator_data) { herr_t ret_value=SUCCEED; /* return value */ @@ -132,7 +132,7 @@ H5S_none_select_iterate(void *buf, hid_t type_id, H5S_t *space, H5D_operator_t o assert(buf); assert(space); - assert(operator); + assert(op); assert(H5I_DATATYPE == H5I_get_type(type_id)); FUNC_LEAVE (ret_value); |