summaryrefslogtreecommitdiffstats
path: root/src/H5T.c
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2005-06-14 20:37:04 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2005-06-14 20:37:04 (GMT)
commit162b19cd6c1f6c6b14254c60b83bd14b1c11184c (patch)
tree2185b176ed9612511bb749fd1db4de2779278724 /src/H5T.c
parent3344dd72ed167f95add9ed58da70e03ca336c2a4 (diff)
downloadhdf5-162b19cd6c1f6c6b14254c60b83bd14b1c11184c.zip
hdf5-162b19cd6c1f6c6b14254c60b83bd14b1c11184c.tar.gz
hdf5-162b19cd6c1f6c6b14254c60b83bd14b1c11184c.tar.bz2
[svn-r10919] Purpose: Take Out An Unused Function
Description: Data conversion function H5T_conv_i32le_f64le() was unused. Because we have new conversion functions for integers and floating numbers, this old function is taken out. Platforms tested: fuss - simple change. Misc. update:
Diffstat (limited to 'src/H5T.c')
-rw-r--r--src/H5T.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/H5T.c b/src/H5T.c
index 73f1c4a..d4dd9f3 100644
--- a/src/H5T.c
+++ b/src/H5T.c
@@ -980,10 +980,6 @@ H5T_init_interface(void)
status |= H5T_register(H5T_PERS_SOFT, "array", array, array, H5T_conv_array, H5AC_dxpl_id);
status |= H5T_register(H5T_PERS_SOFT, "objref", objref, objref, H5T_conv_order_opt, H5AC_dxpl_id);
- /* Custom conversion for 32-bit ints to 64-bit floats (undocumented) */
- status |= H5T_register(H5T_PERS_HARD, "u32le_f64le", std_u32le, ieee_f64le, H5T_conv_i32le_f64le, H5AC_dxpl_id);
- status |= H5T_register(H5T_PERS_HARD, "i32le_f64le", std_i32le, ieee_f64le, H5T_conv_i32le_f64le, H5AC_dxpl_id);
-
/*
* Native conversions should be listed last since we can use hardware to
* perform the conversion. We list the odd types like `llong', `long',