Skip to content

Commit

Permalink
Committing clang-format changes
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 11, 2024
1 parent 24263c3 commit fc9793d
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
26 changes: 13 additions & 13 deletions src/H5Fpublic.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@
/* NOTE: 0x0008u was H5F_ACC_DEBUG, now deprecated */
#define H5F_ACC_CREAT (0x0010u) /**< Create non-existing files */
#define H5F_ACC_SWMR_WRITE \
(0x0020u) /**< Indicates that this file is open for writing in a
* single-writer/multi-reader (SWMR) scenario.
* Note that the process(es) opening the file for reading
* must open the file with #H5F_ACC_RDONLY and use the
(0x0020u) /**< Indicates that this file is open for writing in a \
* single-writer/multi-reader (SWMR) scenario. \
* Note that the process(es) opening the file for reading \
* must open the file with #H5F_ACC_RDONLY and use the \
* #H5F_ACC_SWMR_READ access flag. */
#define H5F_ACC_SWMR_READ \
(0x0040u) /**< Indicates that this file is open for reading in a
* single-writer/multi-reader (SWMR) scenario. Note that
* the process(es) opening the file for SWMR reading must
(0x0040u) /**< Indicates that this file is open for reading in a \
* single-writer/multi-reader (SWMR) scenario. Note that \
* the process(es) opening the file for SWMR reading must \
* also open the file with the #H5F_ACC_RDONLY flag. */

/**
Expand All @@ -59,7 +59,7 @@
#define H5F_OBJ_ATTR (0x0010u) /**< Attribute objects */
#define H5F_OBJ_ALL (H5F_OBJ_FILE | H5F_OBJ_DATASET | H5F_OBJ_GROUP | H5F_OBJ_DATATYPE | H5F_OBJ_ATTR)
#define H5F_OBJ_LOCAL \
(0x0020u) /**< Restrict search to objects opened through current file ID
(0x0020u) /**< Restrict search to objects opened through current file ID \
(as opposed to objects opened through any file ID accessing this file) */

#define H5F_FAMILY_DEFAULT 0 /* (hsize_t) */
Expand Down Expand Up @@ -227,13 +227,13 @@ typedef herr_t (*H5F_flush_cb_t)(hid_t object_id, void *udata);
* combine them as needed.
*/
#define H5F_RFIC_UNUSUAL_NUM_UNUSED_NUMERIC_BITS \
(0x0001u) /**< Suppress errors for numeric datatypes with an unusually
* high number of unused bits. See documentation for
(0x0001u) /**< Suppress errors for numeric datatypes with an unusually \
* high number of unused bits. See documentation for \
* H5Pset_relax_file_integrity_checks for details. */
#define H5F_RFIC_ALL \
(H5F_RFIC_UNUSUAL_NUM_UNUSED_NUMERIC_BITS) /**< Suppress all format integrity check
* errors. See documentation for
* H5Pset_relax_file_integrity_checks
(H5F_RFIC_UNUSUAL_NUM_UNUSED_NUMERIC_BITS) /**< Suppress all format integrity check \
* errors. See documentation for \
* H5Pset_relax_file_integrity_checks \
* for details. */

/*********************/
Expand Down
6 changes: 3 additions & 3 deletions src/H5PLpublic.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ typedef enum H5PL_type_t {
/** Flag for filter plugin \since 1.8.15 */
#define H5PL_FILTER_PLUGIN 0x0001
/** Flag for VOL plugin \since 1.12.0 */
#define H5PL_VOL_PLUGIN 0x0002
#define H5PL_VOL_PLUGIN 0x0002
/** Flag for VFD plugin \since 1.14.0 */
#define H5PL_VFD_PLUGIN 0x0004
#define H5PL_VFD_PLUGIN 0x0004
/** Flag for all plugin types \since 1.8.15 */
#define H5PL_ALL_PLUGIN 0xFFFF
#define H5PL_ALL_PLUGIN 0xFFFF

#define H5F_ACC_DEBUG (0x0000u) /**< Print debug info \deprecated In which version? */

Expand Down
8 changes: 4 additions & 4 deletions src/H5public.h
Original file line number Diff line number Diff line change
Expand Up @@ -344,13 +344,13 @@ typedef int64_t hssize_t;
*/
typedef uint64_t haddr_t;
/** d print conversion specifier \since 1.8.23 */
#define PRIdHADDR PRId64
#define PRIdHADDR PRId64
/** o print conversion specifier \since 1.8.23 */
#define PRIoHADDR PRIo64
#define PRIoHADDR PRIo64
/** u print conversion specifier \since 1.8.23 */
#define PRIuHADDR PRIu64
#define PRIuHADDR PRIu64
/** x print conversion specifier \since 1.8.23 */
#define PRIxHADDR PRIx64
#define PRIxHADDR PRIx64
/** x print conversion specifier \since 1.8.23 */
#define PRIXHADDR PRIX64
#define H5_SIZEOF_HADDR_T 8
Expand Down

0 comments on commit fc9793d

Please sign in to comment.