diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2019-08-13 08:36:42 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2019-08-13 08:36:42 (GMT) |
commit | 5b6bd7c922d81bb6d1877c03e4b012823f03f88a (patch) | |
tree | 0b2564076409a5203df189a480f5cd6471aa57e1 /src/H5Rint.c | |
parent | e874070dbb27994b24860f94ffc53ca1b12211fa (diff) | |
download | hdf5-5b6bd7c922d81bb6d1877c03e4b012823f03f88a.zip hdf5-5b6bd7c922d81bb6d1877c03e4b012823f03f88a.tar.gz hdf5-5b6bd7c922d81bb6d1877c03e4b012823f03f88a.tar.bz2 |
Added the map (H5M) API
Diffstat (limited to 'src/H5Rint.c')
-rw-r--r-- | src/H5Rint.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/H5Rint.c b/src/H5Rint.c index 2355ec1..07efae2 100644 --- a/src/H5Rint.c +++ b/src/H5Rint.c @@ -472,6 +472,9 @@ H5R__dereference(H5F_t *file, hid_t oapl_id, H5R_type_t ref_type, const void *_r break; } + case H5O_TYPE_MAP: + HGOTO_ERROR(H5E_REFERENCE, H5E_BADTYPE, H5I_INVALID_HID, "maps not supported in native VOL connector") + case H5O_TYPE_UNKNOWN: case H5O_TYPE_NTYPES: default: |