summaryrefslogtreecommitdiffstats
path: root/src/H5Sprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2004-05-13 20:33:20 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2004-05-13 20:33:20 (GMT)
commit19704681e19ad6e3d10d36f3337143c887f2baac (patch)
treef3ae7aa0c71b0084acd6d08e03f45f0df9d66886 /src/H5Sprivate.h
parentf0c2b247e2745e7ec578f5274937e8a438a3a08b (diff)
downloadhdf5-19704681e19ad6e3d10d36f3337143c887f2baac.zip
hdf5-19704681e19ad6e3d10d36f3337143c887f2baac.tar.gz
hdf5-19704681e19ad6e3d10d36f3337143c887f2baac.tar.bz2
[svn-r8512] Purpose:
Code optimization Description: Defer creating the span trees for hyperslab selections until they are actually needed (which may be never, in certain circumstances). Platforms tested: Solaris 2.7 (arabica) FreeBSD 4.9 (sleipnir) w/parallel
Diffstat (limited to 'src/H5Sprivate.h')
-rw-r--r--src/H5Sprivate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Sprivate.h b/src/H5Sprivate.h
index 947c34b..e766b52 100644
--- a/src/H5Sprivate.h
+++ b/src/H5Sprivate.h
@@ -254,7 +254,7 @@ H5_DLL herr_t H5S_hyper_convert(H5S_t *space);
#ifdef LATER
H5_DLL htri_t H5S_hyper_intersect (H5S_t *space1, H5S_t *space2);
#endif /* LATER */
-H5_DLL htri_t H5S_hyper_intersect_block (const H5S_t *space, hssize_t *start, hssize_t *end);
+H5_DLL htri_t H5S_hyper_intersect_block (H5S_t *space, hssize_t *start, hssize_t *end);
H5_DLL herr_t H5S_hyper_adjust(H5S_t *space, const hssize_t *offset);
H5_DLL herr_t H5S_hyper_move(H5S_t *space, const hssize_t *offset);
H5_DLL herr_t H5S_hyper_normalize_offset(H5S_t *space);