diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2003-09-10 22:59:00 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2003-09-10 22:59:00 (GMT) |
commit | 81c68519658c984e4a0e225c5d54d8e4604f1729 (patch) | |
tree | 476754c48fbf41d92a791636216415ee8d624b41 /src/H5Tpkg.h | |
parent | 1f5e8c2e63a4f3cf34d8f187adc24133caa2d25d (diff) | |
download | hdf5-81c68519658c984e4a0e225c5d54d8e4604f1729.zip hdf5-81c68519658c984e4a0e225c5d54d8e4604f1729.tar.gz hdf5-81c68519658c984e4a0e225c5d54d8e4604f1729.tar.bz2 |
[svn-r7461] Purpose: bug #1017
Description: H5Tpack fails if called twice or datatype is locked. Compound
datatype wasn't expandable.
Platforms tested: h5committest
Diffstat (limited to 'src/H5Tpkg.h')
-rw-r--r-- | src/H5Tpkg.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5Tpkg.h b/src/H5Tpkg.h index 49a1ca8..e6127af 100644 --- a/src/H5Tpkg.h +++ b/src/H5Tpkg.h @@ -194,6 +194,7 @@ struct H5T_t { H5T_class_t type; /*which class of type is this? */ size_t size; /*total size of an instance of this type */ hbool_t force_conv;/* Set if this type always needs to be converted and H5T_conv_noop cannot be called */ + hbool_t packed; /*whether a compound type is packed */ struct H5T_t *parent;/*parent type for derived datatypes */ union { H5T_atomic_t atomic; /* an atomic datatype */ |