- 积分
- 2519
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2023-6-23
- 最后登录
- 1970-1-1
|

楼主 |
发表于 2023-6-26 08:42:07
|
显示全部楼层
同时 make check 时有很多的warning
H5Dfill.c(234): warning #2330: argument of type "const H5T_t *" is incompatible with parameter of type "H5T_t *" (dropping qualifiers)
if((src_id = H5I_register(H5I_DATATYPE, H5T_copy(fill_type, H5T_COPY_ALL), FALSE)) < 0)
^
H5Dfill.c(237): warning #2330: argument of type "const H5T_t *" is incompatible with parameter of type "H5T_t *" (dropping qualifiers)
if((dst_id = H5I_register(H5I_DATATYPE, H5T_copy(buf_type, H5T_COPY_ALL), FALSE)) < 0)
^
H5Dfill.c(407): warning #2330: argument of type "const H5T_t *" is incompatible with parameter of type "H5T_t *" (dropping qualifiers)
if(NULL == (fb_info->mem_type = H5T_copy(dset_type, H5T_COPY_REOPEN)))
^
CC H5Dint.lo
H5Dint.c(638): warning #2330: argument of type "const H5T_t *" is incompatible with parameter of type "H5T_t *" (dropping qualifiers)
if((dset->shared->type = H5T_copy(type, H5T_COPY_ALL)) == NULL)
^
CC H5Dio.lo
H5Dio.c(424): warning #266: function "H5T_patch_vlen_file" declared implicitly
H5T_patch_vlen_file(dataset->shared->type, dataset->oloc.file);
^
H5Dio.c(647): warning #266: function "H5T_patch_vlen_file" declared implicitly
H5T_patch_vlen_file(dataset->shared->type, dataset->oloc.file); |
|