diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Dchunk.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/H5Dchunk.c b/src/H5Dchunk.c index 3575aab..53a2c5f 100644 --- a/src/H5Dchunk.c +++ b/src/H5Dchunk.c @@ -1444,6 +1444,11 @@ H5D__chunk_mem_xfree(void *chk, void *_pline) FUNC_LEAVE_NOAPI(NULL) } /* H5D__chunk_mem_xfree() */ +/* H5D__chunk_mem_xfree_wrapper() safely adapts the type of + * H5D__chunk_mem_xfree() to an H5MM_free_t callback, without making + * compilers warn. It is used with H5D__chunk_mem_xfree_wrapper(), for + * example. + */ static void H5D__chunk_mem_xfree_wrapper(void *chk, void *_pline) { |