summaryrefslogtreecommitdiffstats
path: root/bin/trace
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2020-02-18 22:31:35 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-05-20 14:31:55 (GMT)
commit4cd3dc95d9b546b1293a608e2c0da0e3ec590e37 (patch)
tree9410f6471f9e908fad0e4ce08138c63cd4b21a7c /bin/trace
parent28103327a504047620c8fccd39a649f25d3c4c38 (diff)
downloadhdf5-4cd3dc95d9b546b1293a608e2c0da0e3ec590e37.zip
hdf5-4cd3dc95d9b546b1293a608e2c0da0e3ec590e37.tar.gz
hdf5-4cd3dc95d9b546b1293a608e2c0da0e3ec590e37.tar.bz2
Filter all of the new _USED / _UNUSED type modifiers.
Diffstat (limited to 'bin/trace')
-rwxr-xr-xbin/trace5
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/trace b/bin/trace
index d9ab6cb..400235c 100755
--- a/bin/trace
+++ b/bin/trace
@@ -240,6 +240,11 @@ sub argstring ($$$) {
# certain type qualifiers, and indirection.
$atype =~ s/^\bconst\b//;
$atype =~ s/\bH5_ATTR_UNUSED\b//g;
+ $atype =~ s/\bH5_ATTR_DEPRECATED_USED\b//g;
+ $atype =~ s/\bH5_ATTR_NDEBUG_UNUSED\b//g;
+ $atype =~ s/\bH5_ATTR_DEBUG_API_USED\b//g;
+ $atype =~ s/\bH5_ATTR_PARALLEL_UNUSED\b//g;
+ $atype =~ s/\bH5_ATTR_PARALLEL_USED\b//g;
$atype =~ s/\s+/ /g;
$ptr = length $1 if $atype =~ s/(\*+)//;
$atype =~ s/^\s+//;