summaryrefslogtreecommitdiffstats
path: root/src/H5Spkg.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Spkg.h')
-rw-r--r--src/H5Spkg.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/H5Spkg.h b/src/H5Spkg.h
index c9b413e..4c225dc 100644
--- a/src/H5Spkg.h
+++ b/src/H5Spkg.h
@@ -38,13 +38,14 @@
*/
/* Extent container */
struct H5S_extent_t {
- H5S_class_t type; /* Type of extent */
- hsize_t nelem; /* Number of elements in extent */
+ H5O_shared_t sh_loc; /* Shared message info (must be first) */
- unsigned rank; /* Number of dimensions */
- hsize_t *size; /* Current size of the dimensions */
- hsize_t *max; /* Maximum size of the dimensions */
- H5O_shared_t sh_loc; /* location of this message if shared */
+ H5S_class_t type; /* Type of extent */
+ hsize_t nelem; /* Number of elements in extent */
+
+ unsigned rank; /* Number of dimensions */
+ hsize_t *size; /* Current size of the dimensions */
+ hsize_t *max; /* Maximum size of the dimensions */
};
/*