summaryrefslogtreecommitdiffstats
path: root/src/H5Fpublic.h
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-09-05 21:52:30 (GMT)
committerGitHub <noreply@github.com>2023-09-05 21:52:30 (GMT)
commit8253ab9ebf6a082dc07eb931f27b169d6a45d577 (patch)
tree47630856491e54f5d28e1608ffa5e2f976dc9c95 /src/H5Fpublic.h
parent920869796031ed4ee9c1fbea8aaccda3592a88b3 (diff)
downloadhdf5-8253ab9ebf6a082dc07eb931f27b169d6a45d577.zip
hdf5-8253ab9ebf6a082dc07eb931f27b169d6a45d577.tar.gz
hdf5-8253ab9ebf6a082dc07eb931f27b169d6a45d577.tar.bz2
Convert hbool_t --> bool in src (#3496)
* hbool_t --> bool in src * Does not remove TRUE/FALSE * Public header files are unchanged * Public API calls are unchanged * TRUE/FALSE --> true/false in src * Add deprecation notice for hbool_t
Diffstat (limited to 'src/H5Fpublic.h')
-rw-r--r--src/H5Fpublic.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5Fpublic.h b/src/H5Fpublic.h
index 585f9a0..f800b4c 100644
--- a/src/H5Fpublic.h
+++ b/src/H5Fpublic.h
@@ -1659,7 +1659,7 @@ H5_DLL herr_t H5Fget_mdc_image_info(hid_t file_id, haddr_t *image_addr, hsize_t
* \details H5Fget_dset_no_attrs_hint() retrieves the no dataset attributes
* hint setting for the file specified by the file identifier \p
* file_id. This setting is used to inform the library to create
- * minimized dataset object headers when \c TRUE.
+ * minimized dataset object headers when \c true.
*
* The setting's value is returned in the boolean pointer minimized.
*
@@ -1680,18 +1680,18 @@ H5_DLL herr_t H5Fget_dset_no_attrs_hint(hid_t file_id, hbool_t *minimize);
*
* \details H5Fset_dset_no_attrs_hint() sets the no dataset attributes hint
* setting for the file specified by the file identifier \p file_id.
- * If the boolean flag \p minimize is set to \c TRUE, then the library
+ * If the boolean flag \p minimize is set to \c true, then the library
* will create minimized dataset object headers in the file.
* \Bold{All} files that refer to the same file-on-disk will be
* affected by the most recent setting, regardless of the file
* identifier/handle (e.g., as returned by H5Fopen()). By setting the
- * \p minimize flag to \c TRUE, the library expects that no attributes
+ * \p minimize flag to \c true, the library expects that no attributes
* will be added to the dataset - attributes can be added, but they
* are appended with a continuation message, which can reduce
* performance.
*
* \attention This setting interacts with H5Pset_dset_no_attrs_hint(): if
- * either is set to \c TRUE, then the created dataset's object header
+ * either is set to \c true, then the created dataset's object header
* will be minimized.
*
* \since 1.10.5