diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-04-10 02:51:05 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-04-10 02:51:05 (GMT) |
commit | aab7fd598fa513f2a4dfc3d0784587cd8ae8cadb (patch) | |
tree | e29f4e3404cccd21f0435abdda78846096288c98 /tools/h5dump/h5dump.c | |
parent | 1267f5408e7b515c6bad9b40fd4c9750789496bb (diff) | |
download | hdf5-aab7fd598fa513f2a4dfc3d0784587cd8ae8cadb.zip hdf5-aab7fd598fa513f2a4dfc3d0784587cd8ae8cadb.tar.gz hdf5-aab7fd598fa513f2a4dfc3d0784587cd8ae8cadb.tar.bz2 |
[svn-r12218] Purpose:
Code cleanup
Description:
Remove remnents of references to unimplemented H5S_COMPLEX dataspace.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Linux 2.4 32-bit (heping)
Linux 2.4 64-bit (mir)
Solaris 2.9 (shanti)
Diffstat (limited to 'tools/h5dump/h5dump.c')
-rw-r--r-- | tools/h5dump/h5dump.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/tools/h5dump/h5dump.c b/tools/h5dump/h5dump.c index ed6fa6d..029990e 100644 --- a/tools/h5dump/h5dump.c +++ b/tools/h5dump/h5dump.c @@ -1163,9 +1163,6 @@ dump_dataspace(hid_t space) HDfprintf(stdout, "%s %s", dump_header_format->dataspacedescriptionbegin, S_NULL); break; - case H5S_COMPLEX: - printf("%s not yet implemented %s\n", BEGIN, END); - break; case H5S_NO_CLASS: default: printf("%s unknown dataspace %s\n", BEGIN, END); @@ -2035,7 +2032,7 @@ dump_data(hid_t obj_id, int obj_data, struct subset_t *sset, int pindex) /* need to call h5tools_dump_mem for the attribute data */ space = H5Aget_space(obj_id); space_type = H5Sget_simple_extent_type(space); - if(space_type == H5S_NULL || space_type == H5S_NO_CLASS || space_type == H5S_COMPLEX) { + if(space_type == H5S_NULL || space_type == H5S_NO_CLASS) { status = SUCCEED; } else { char string_prefix[64]; @@ -4497,10 +4494,6 @@ xml_dump_dataspace(hid_t space) break; #endif /* TMP */ - case H5S_COMPLEX: - printf("<!-- not yet implemented -->\n"); - - break; case H5S_NO_CLASS: default: printf("<!-- unknown dataspace -->\n"); |