summaryrefslogtreecommitdiffstats
path: root/src/H5Dint.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2019-06-24 05:34:08 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2019-06-24 05:34:08 (GMT)
commit8b00d921d7313cd21947992ab4a007d593c49207 (patch)
tree28c85f34592da28311d7e63da0002df8e63b24af /src/H5Dint.c
parent60dee604cdf2532c61666cc405b1891658dbdd73 (diff)
downloadhdf5-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.c24
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.