diff options
author | Neil Fortner <fortnern@gmail.com> | 2023-10-03 23:39:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-03 23:39:24 (GMT) |
commit | b1663686012d7c1cc10ef0792bf478442f2c0e7f (patch) | |
tree | b464143398f5725d850e4d35319691f6aa0a2ec6 /src | |
parent | 447765609befbf16fcff471b2fda913c3e31432b (diff) | |
download | hdf5-b1663686012d7c1cc10ef0792bf478442f2c0e7f.zip hdf5-b1663686012d7c1cc10ef0792bf478442f2c0e7f.tar.gz hdf5-b1663686012d7c1cc10ef0792bf478442f2c0e7f.tar.bz2 |
Remove unused member from H5D_shared_t struct. (#3628)
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Dpkg.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/H5Dpkg.h b/src/H5Dpkg.h index 0dbcb64..5ffb235 100644 --- a/src/H5Dpkg.h +++ b/src/H5Dpkg.h @@ -538,13 +538,12 @@ struct H5D_shared_t { /* Buffered/cached information for types of raw data storage*/ struct { - H5D_rdcdc_t contig; /* Information about contiguous data */ - /* (Note that the "contig" cache - * information can be used by a chunked - * dataset in certain circumstances) - */ - H5D_rdcc_t chunk; /* Information about chunked data */ - H5SL_t *sel_pieces; /* Skip list containing information for each piece selected */ + H5D_rdcdc_t contig; /* Information about contiguous data */ + /* (Note that the "contig" cache + * information can be used by a chunked + * dataset in certain circumstances) + */ + H5D_rdcc_t chunk; /* Information about chunked data */ } cache; H5D_append_flush_t append_flush; /* Append flush property information */ |