diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2019-06-24 05:34:08 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2019-06-24 05:34:08 (GMT) |
commit | 8b00d921d7313cd21947992ab4a007d593c49207 (patch) | |
tree | 28c85f34592da28311d7e63da0002df8e63b24af /src/H5Dint.c | |
parent | 60dee604cdf2532c61666cc405b1891658dbdd73 (diff) | |
download | hdf5-8b00d921d7313cd21947992ab4a007d593c49207.zip hdf5-8b00d921d7313cd21947992ab4a007d593c49207.tar.gz hdf5-8b00d921d7313cd21947992ab4a007d593c49207.tar.bz2 |
Updated H5Tcopy() to get the dataset's datatype through the VOL when
that is passed in as the object ID.
Diffstat (limited to 'src/H5Dint.c')
-rw-r--r-- | src/H5Dint.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/H5Dint.c b/src/H5Dint.c index 63d1160..cd120d0 100644 --- a/src/H5Dint.c +++ b/src/H5Dint.c @@ -2201,30 +2201,6 @@ H5D_nameof(const H5D_t *dataset) /*------------------------------------------------------------------------- - * Function: H5D_typeof - * - * Purpose: Returns a pointer to the dataset's datatype. The datatype - * is not copied. - * - * Return: Success: Ptr to the dataset's datatype, uncopied. - * Failure: NULL - *------------------------------------------------------------------------- - */ -H5T_t * -H5D_typeof(const H5D_t *dset) -{ - /* Use FUNC_ENTER_NOAPI_NOINIT_NOERR here to avoid performance issues */ - FUNC_ENTER_NOAPI_NOINIT_NOERR - - HDassert(dset); - HDassert(dset->shared); - HDassert(dset->shared->type); - - FUNC_LEAVE_NOAPI(dset->shared->type) -} /* end H5D_typeof() */ - - -/*------------------------------------------------------------------------- * Function: H5D__alloc_storage * * Purpose: Allocate storage for the raw data of a dataset. |