summaryrefslogtreecommitdiffstats
path: root/src/H5Tcommit.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2013-08-21 15:57:11 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2013-08-21 15:57:11 (GMT)
commit8c5fc92408736d6df89c1d47f8df85d9c5bf54b7 (patch)
treea096bad887ad8396d4d998be77840b0a4c20e5ab /src/H5Tcommit.c
parent4682e492ad9fd48975ed5c23f5f3ed1d5b47ce5a (diff)
parent78d8f8d7d12e779f640cf037bc52fd7e8a07061c (diff)
downloadhdf5-8c5fc92408736d6df89c1d47f8df85d9c5bf54b7.zip
hdf5-8c5fc92408736d6df89c1d47f8df85d9c5bf54b7.tar.gz
hdf5-8c5fc92408736d6df89c1d47f8df85d9c5bf54b7.tar.bz2
[svn-r24045] Merging r23841 through r24044 from VOL branch.
Diffstat (limited to 'src/H5Tcommit.c')
-rw-r--r--src/H5Tcommit.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/H5Tcommit.c b/src/H5Tcommit.c
index 5c96b4a..52cd710 100644
--- a/src/H5Tcommit.c
+++ b/src/H5Tcommit.c
@@ -915,39 +915,6 @@ H5T_update_shared(H5T_t *dt)
/*-------------------------------------------------------------------------
- * Function: H5Tget_named_type
- *
- * Purpose: returns the VOL object or the named datatype structure
- * if it exists. This is the public wrapper for H5T_get_named_type.
- *
- * Return: Non-negative on success/Negative on failure
- *
- * Programmer: Mohamad Chaarawi
- * June 2013
- *
- *-------------------------------------------------------------------------
- */
-herr_t
-H5Tget_vol_named_type(hid_t type_id, void **dt_obj)
-{
- H5T_t *type; /* datatype for operation */
- herr_t ret_value = SUCCEED; /* Return value */
-
- FUNC_ENTER_API(FAIL)
- H5TRACE2("e", "i**x", type_id, dt_obj);
-
- /* Check arguments */
- if(NULL == (type = (H5T_t *)H5I_object_verify(type_id, H5I_DATATYPE)))
- HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a datatype")
-
- *dt_obj = H5T_get_named_type(type);
-
-done:
- FUNC_LEAVE_API(ret_value)
-} /* end H5Tget_named_type() */
-
-
-/*-------------------------------------------------------------------------
* Function: H5T_get_named_type
*
* Purpose: returns the VOL object or the named datatype structure