diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2005-02-08 18:30:29 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2005-02-08 18:30:29 (GMT) |
commit | 70c0ba03cec20ad3c353fcf776f4b48f2ac8da9f (patch) | |
tree | 437db9a19b864616d6888a9d184e8a8e2714630e /src/H5Tprivate.h | |
parent | e31f8dfdc830cfc71a84ae36f2f69a0d432576db (diff) | |
download | hdf5-70c0ba03cec20ad3c353fcf776f4b48f2ac8da9f.zip hdf5-70c0ba03cec20ad3c353fcf776f4b48f2ac8da9f.tar.gz hdf5-70c0ba03cec20ad3c353fcf776f4b48f2ac8da9f.tar.bz2 |
[svn-r9959] Purpose: Bug fix
Description: For variable-length string, H5Tget_class returned H5T_STRING as
its class. But H5Tdetect_class and H5Tget_member_class considered it as
H5T_VLEN. This is fixed to let all these 3 functions treat it as H5T_STRING.
Some test cases have been added to dtypes.c
Platforms tested: heping - already tested for v1.6 with h5committest
Misc. update: RELEASE.txt
Diffstat (limited to 'src/H5Tprivate.h')
-rw-r--r-- | src/H5Tprivate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Tprivate.h b/src/H5Tprivate.h index e09be78..be4110c 100644 --- a/src/H5Tprivate.h +++ b/src/H5Tprivate.h @@ -71,7 +71,7 @@ H5_DLL H5T_t *H5T_open(H5G_entry_t *ent, hid_t dxpl_id); H5_DLL H5T_t *H5T_copy(const H5T_t *old_dt, H5T_copy_t method); H5_DLL herr_t H5T_lock(H5T_t *dt, hbool_t immutable); H5_DLL herr_t H5T_close(H5T_t *dt); -H5_DLL H5T_class_t H5T_get_class(const H5T_t *dt); +H5_DLL H5T_class_t H5T_get_class(const H5T_t *dt, htri_t internal); H5_DLL htri_t H5T_detect_class (const H5T_t *dt, H5T_class_t cls); H5_DLL size_t H5T_get_size(const H5T_t *dt); H5_DLL int H5T_cmp(const H5T_t *dt1, const H5T_t *dt2); |