diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2013-08-28 19:35:34 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2013-08-28 19:35:34 (GMT) |
commit | 9e0fcdc3970f576786332eacb1929b91701614ba (patch) | |
tree | cf72cf28520072be5c6b8b2a61e0dafd7552f6ff /src/H5T.c | |
parent | 55c2af580c11034b210df5d9efdd6b9c4d802424 (diff) | |
download | hdf5-9e0fcdc3970f576786332eacb1929b91701614ba.zip hdf5-9e0fcdc3970f576786332eacb1929b91701614ba.tar.gz hdf5-9e0fcdc3970f576786332eacb1929b91701614ba.tar.bz2 |
[svn-r24080] Since dtransform.c uses H5T_conv_i_f and H5T_conv_f_i, I added them back for OpenVMS. But I took out the test case in dtransform.c which has problem. See Jira issue VMS-8.
Tested on jam.
Diffstat (limited to 'src/H5T.c')
-rw-r--r-- | src/H5T.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1051,11 +1051,10 @@ H5T_init_interface(void) status |= H5T_register(H5T_PERS_SOFT, "i_i", fixedpt, fixedpt, H5T__conv_i_i, H5AC_dxpl_id, FALSE); status |= H5T_register(H5T_PERS_SOFT, "f_f", floatpt, floatpt, H5T__conv_f_f, H5AC_dxpl_id, FALSE); -#ifndef H5_VMS - /* Disable these two conversion function because OpenVMS has trouble with them - SLU 2013/8/26 */ + status |= H5T_register(H5T_PERS_SOFT, "i_f", fixedpt, floatpt, H5T__conv_i_f, H5AC_dxpl_id, FALSE); status |= H5T_register(H5T_PERS_SOFT, "f_i", floatpt, fixedpt, H5T__conv_f_i, H5AC_dxpl_id, FALSE); -#endif + status |= H5T_register(H5T_PERS_SOFT, "s_s", string, string, H5T__conv_s_s, H5AC_dxpl_id, FALSE); status |= H5T_register(H5T_PERS_SOFT, "b_b", bitfield, bitfield, H5T__conv_b_b, H5AC_dxpl_id, FALSE); status |= H5T_register(H5T_PERS_SOFT, "ibo", fixedpt, fixedpt, H5T__conv_order, H5AC_dxpl_id, FALSE); |