diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2017-12-01 01:12:37 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2017-12-01 01:12:37 (GMT) |
commit | bbb512bb55b430977713b4f8c662d6a918a456e9 (patch) | |
tree | 881b9f07d39824d101c39fa813903a2ed1db39fa /src/H5Oprivate.h | |
parent | 20171a92a59045d1f0ba8481961070689f1c59f2 (diff) | |
download | hdf5-bbb512bb55b430977713b4f8c662d6a918a456e9.zip hdf5-bbb512bb55b430977713b4f8c662d6a918a456e9.tar.gz hdf5-bbb512bb55b430977713b4f8c662d6a918a456e9.tar.bz2 |
Normalization with VOL integration branch.
Diffstat (limited to 'src/H5Oprivate.h')
-rw-r--r-- | src/H5Oprivate.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/H5Oprivate.h b/src/H5Oprivate.h index e87c148..4b74d8f 100644 --- a/src/H5Oprivate.h +++ b/src/H5Oprivate.h @@ -26,6 +26,7 @@ /* Early typedefs to avoid circular dependencies */ typedef struct H5O_t H5O_t; +typedef struct H5O_fill_t H5O_fill_t; /* Include the public header file for this API */ #include "H5Opublic.h" /* Object header functions */ @@ -308,7 +309,7 @@ typedef struct H5O_linfo_t { * message if it's shared. */ -typedef struct H5O_fill_t { +struct H5O_fill_t { H5O_shared_t sh_loc; /* Shared message info (must be first) */ unsigned version; /* Encoding version number */ @@ -318,7 +319,7 @@ typedef struct H5O_fill_t { H5D_alloc_time_t alloc_time; /* time to allocate space */ H5D_fill_time_t fill_time; /* time to write fill value */ hbool_t fill_defined; /* whether fill value is defined */ -} H5O_fill_t; +}; /* * Link message. |