mirror of
https://github.com/HDFGroup/hdf5.git
synced 2026-09-25 04:09:44 +03:00
clang-format: realign declarations after aux refcounting refactor
This commit is contained in:
@@ -1415,11 +1415,11 @@ H5Z_append(H5O_pline_t *pline, H5Z_filter_t filter, unsigned flags, size_t cd_ne
|
||||
} /* end if */
|
||||
|
||||
/* Add the new filter to the pipeline */
|
||||
idx = pline->nused;
|
||||
pline->filter[idx].id = filter;
|
||||
pline->filter[idx].flags = flags;
|
||||
pline->filter[idx].name = NULL; /*we'll pick it up later*/
|
||||
pline->filter[idx].cd_nelmts = cd_nelmts;
|
||||
idx = pline->nused;
|
||||
pline->filter[idx].id = filter;
|
||||
pline->filter[idx].flags = flags;
|
||||
pline->filter[idx].name = NULL; /*we'll pick it up later*/
|
||||
pline->filter[idx].cd_nelmts = cd_nelmts;
|
||||
pline->filter[idx].config = NULL; /*set by H5Pappend_filter or pline decode*/
|
||||
pline->filter[idx].aux = NULL; /*set by H5Pappend_filter_blob or pline decode*/
|
||||
pline->filter[idx].aux_loc.addr = HADDR_UNDEF;
|
||||
|
||||
+5
-5
@@ -60,11 +60,11 @@ typedef struct H5Z_filter_info_t H5Z_filter_info_t;
|
||||
* the last reference is released (H5Z_blob_release). */
|
||||
typedef struct H5Z_blob_buf_t {
|
||||
void *data; /*blob bytes */
|
||||
size_t size; /*byte length of data */
|
||||
bool from_callback; /*data was allocated by the filter's read_blob
|
||||
*callback and must be released via close_blob,
|
||||
*not H5MM_xfree */
|
||||
size_t nrefs; /*current reference count */
|
||||
size_t size; /*byte length of data */
|
||||
bool from_callback; /*data was allocated by the filter's read_blob
|
||||
*callback and must be released via close_blob,
|
||||
*not H5MM_xfree */
|
||||
size_t nrefs; /*current reference count */
|
||||
} H5Z_blob_buf_t;
|
||||
|
||||
/* Structure to store information about each filter's parameters */
|
||||
|
||||
Reference in New Issue
Block a user