-
-
Notifications
You must be signed in to change notification settings - Fork 267
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make H5F_LIBVER_LATEST a real enum value #5083
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -163,17 +163,16 @@ typedef struct H5F_sect_info_t { | |
*/ | ||
typedef enum H5F_libver_t { | ||
H5F_LIBVER_ERROR = -1, | ||
H5F_LIBVER_EARLIEST = 0, /**< Use the earliest possible format for storing objects */ | ||
H5F_LIBVER_V18 = 1, /**< Use the latest v18 format for storing objects */ | ||
H5F_LIBVER_V110 = 2, /**< Use the latest v110 format for storing objects */ | ||
H5F_LIBVER_V112 = 3, /**< Use the latest v112 format for storing objects */ | ||
H5F_LIBVER_V114 = 4, /**< Use the latest v114 format for storing objects */ | ||
H5F_LIBVER_V200 = 5, /**< Use the latest v200 format for storing objects */ | ||
H5F_LIBVER_EARLIEST = 0, /**< Use the earliest possible file format for storing objects */ | ||
H5F_LIBVER_V18 = 1, /**< Use the 1.8 file format for storing objects */ | ||
H5F_LIBVER_V110 = 2, /**< Use the 1.10 file format for storing objects */ | ||
H5F_LIBVER_V112 = 3, /**< Use the 1.12 file format for storing objects */ | ||
H5F_LIBVER_V114 = 4, /**< Use the 1.14 file format for storing objects */ | ||
H5F_LIBVER_V200 = 5, /**< Use the 2.0 file format for storing objects */ | ||
H5F_LIBVER_LATEST = 5, /**< Use the latest file format for storing objects */ | ||
H5F_LIBVER_NBOUNDS /**< Sentinel */ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We probably want to check what consequences this will have by making There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'll take a look |
||
} H5F_libver_t; | ||
|
||
#define H5F_LIBVER_LATEST H5F_LIBVER_V200 | ||
|
||
/** | ||
* File space handling strategy | ||
*/ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Java changes are just a re-ordering, putting LATEST in front of NBOUNDS