summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2023-06-06 19:43:09 (GMT)
committerGitHub <noreply@github.com>2023-06-06 19:43:09 (GMT)
commitd6059b9d75d40538376b7d629ca8ef70dd272020 (patch)
tree13724652550204387126aa6ff84f59a97fb826ea /src
parent57c71cb983649b6831e7da4b465893e4fb0f8f09 (diff)
downloadhdf5-d6059b9d75d40538376b7d629ca8ef70dd272020.zip
hdf5-d6059b9d75d40538376b7d629ca8ef70dd272020.tar.gz
hdf5-d6059b9d75d40538376b7d629ca8ef70dd272020.tar.bz2
Fix doxygen comments in structure and enable FAIL_ON_WARNINGS (#3059)
Diffstat (limited to 'src')
-rw-r--r--src/H5FDpublic.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/H5FDpublic.h b/src/H5FDpublic.h
index 2a131dd..0eceb2f 100644
--- a/src/H5FDpublic.h
+++ b/src/H5FDpublic.h
@@ -314,6 +314,7 @@ typedef struct {
/**
* \param[in] dest Address of the destination buffer
* \param[in] src Address of the source buffer
+ * \param[in] size Size in bytes of the file image buffer to allocate
* \param[in] file_image_op A value from #H5FD_file_image_op_t indicating
* the operation being performed on the file image
* when this callback is invoked
@@ -326,6 +327,7 @@ typedef struct {
//! <!-- [image_memcpy_snip] -->
/**
* \param[in] ptr Pointer to the buffer being reallocated
+ * \param[in] size Size in bytes of the file image buffer to allocate
* \param[in] file_image_op A value from #H5FD_file_image_op_t indicating
* the operation being performed on the file image
* when this callback is invoked
@@ -336,6 +338,10 @@ typedef struct {
void *(*image_realloc)(void *ptr, size_t size, H5FD_file_image_op_t file_image_op, void *udata);
//! <!-- [image_realloc_snip] -->
/**
+ * \param[in] ptr Pointer to the buffer being reallocated
+ * \param[in] file_image_op A value from #H5FD_file_image_op_t indicating
+ * the operation being performed on the file image
+ * when this callback is invoked
* \param[in] udata Value passed in in the H5Pset_file_image_callbacks
* parameter \p udata
*/