diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2018-12-08 16:14:05 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2018-12-08 16:14:05 (GMT) |
commit | e21c1cf7c6ee6dba5dd5bfd1a525227ac1304b53 (patch) | |
tree | a06b4d91037a48e6c52fcc99756239629ef95394 /src/H5trace.c | |
parent | 4643860aa940fb52da251f7023ec2e48d7d10f34 (diff) | |
download | hdf5-e21c1cf7c6ee6dba5dd5bfd1a525227ac1304b53.zip hdf5-e21c1cf7c6ee6dba5dd5bfd1a525227ac1304b53.tar.gz hdf5-e21c1cf7c6ee6dba5dd5bfd1a525227ac1304b53.tar.bz2 |
Removed H5I_REFERENCE from the library. It has always been unused
and has been marked 'deprecated' since 1.10.0. Fixes HDFFV-10252.
Diffstat (limited to 'src/H5trace.c')
-rw-r--r-- | src/H5trace.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/H5trace.c b/src/H5trace.c index d5aad06..f6740f4 100644 --- a/src/H5trace.c +++ b/src/H5trace.c @@ -1355,10 +1355,6 @@ H5_trace(const double *returning, const char *func, const char *type, ...) HDfprintf(out, "%ld (attr)", (long)obj); break; - case H5I_REFERENCE: - HDfprintf(out, "%ld (reference)", (long)obj); - break; - case H5I_VFL: HDfprintf(out, "%ld (file driver)", (long)obj); break; @@ -1540,10 +1536,6 @@ H5_trace(const double *returning, const char *func, const char *type, ...) HDfprintf(out, "H5I_ATTR"); break; - case H5I_REFERENCE: - HDfprintf(out, "H5I_REFERENCE"); - break; - case H5I_VFL: HDfprintf(out, "H5I_VFL"); break; |