diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2005-06-14 20:37:04 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2005-06-14 20:37:04 (GMT) |
commit | 162b19cd6c1f6c6b14254c60b83bd14b1c11184c (patch) | |
tree | 2185b176ed9612511bb749fd1db4de2779278724 /src/H5T.c | |
parent | 3344dd72ed167f95add9ed58da70e03ca336c2a4 (diff) | |
download | hdf5-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.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -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', |