summaryrefslogtreecommitdiffstats
path: root/src/H5Apkg.h
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2022-07-26 21:45:46 (GMT)
committerGitHub <noreply@github.com>2022-07-26 21:45:46 (GMT)
commitae414872f50187e64cbd6cc8f076c22cf5df2d53 (patch)
treeb616f33f5daa89f213e7c64e04c63afde906e939 /src/H5Apkg.h
parent213eac2588369f75a11df6bb1788dde33c4b82e2 (diff)
downloadhdf5-ae414872f50187e64cbd6cc8f076c22cf5df2d53.zip
hdf5-ae414872f50187e64cbd6cc8f076c22cf5df2d53.tar.gz
hdf5-ae414872f50187e64cbd6cc8f076c22cf5df2d53.tar.bz2
Develop clang 13 format (#1933)
* Update format source to clang 13 * More format changes
Diffstat (limited to 'src/H5Apkg.h')
-rw-r--r--src/H5Apkg.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/H5Apkg.h b/src/H5Apkg.h
index b50cbc4..a250973 100644
--- a/src/H5Apkg.h
+++ b/src/H5Apkg.h
@@ -72,7 +72,7 @@
typedef struct H5A_shared_t {
uint8_t version; /* Version to encode attribute with */
- char * name; /* Attribute's name */
+ char *name; /* Attribute's name */
H5T_cset_t encoding; /* Character encoding of attribute name */
H5T_t *dt; /* Attribute's datatype */
@@ -81,7 +81,7 @@ typedef struct H5A_shared_t {
H5S_t *ds; /* Attribute's dataspace */
size_t ds_size; /* Size of dataspace on disk */
- void * data; /* Attribute data (on a temporary basis) */
+ void *data; /* Attribute data (on a temporary basis) */
size_t data_size; /* Size of data on disk */
H5O_msg_crt_idx_t crt_idx; /* Attribute's creation index in the object header */
unsigned nrefs; /* Ref count for times this object is referred */
@@ -126,15 +126,15 @@ typedef herr_t (*H5A_bt2_found_t)(const H5A_t *attr, hbool_t *took_ownership, vo
*/
typedef struct H5A_bt2_ud_common_t {
/* downward */
- H5F_t * f; /* Pointer to file that fractal heap is in */
- H5HF_t * fheap; /* Fractal heap handle */
- H5HF_t * shared_fheap; /* Fractal heap handle for shared messages */
- const char * name; /* Name of attribute to compare */
+ H5F_t *f; /* Pointer to file that fractal heap is in */
+ H5HF_t *fheap; /* Fractal heap handle */
+ H5HF_t *shared_fheap; /* Fractal heap handle for shared messages */
+ const char *name; /* Name of attribute to compare */
uint32_t name_hash; /* Hash of name of attribute to compare */
uint8_t flags; /* Flags for attribute storage location */
H5O_msg_crt_idx_t corder; /* Creation order value of attribute to compare */
H5A_bt2_found_t found_op; /* Callback when correct attribute is found */
- void * found_op_data; /* Callback data when correct attribute is found */
+ void *found_op_data; /* Callback data when correct attribute is found */
} H5A_bt2_ud_common_t;
/*