summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2020-02-18 22:31:35 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-02-18 22:31:35 (GMT)
commitac7cd484d8872d087e0a973d9c83e37a3ddd5965 (patch)
tree12c6dc481dbca5789e865d901bda566fba3e8149
parentf9a8fd5a4c8f3c8f2d707dd384582181a0c33077 (diff)
downloadhdf5-ac7cd484d8872d087e0a973d9c83e37a3ddd5965.zip
hdf5-ac7cd484d8872d087e0a973d9c83e37a3ddd5965.tar.gz
hdf5-ac7cd484d8872d087e0a973d9c83e37a3ddd5965.tar.bz2
Filter all of the new _USED / _UNUSED type modifiers.
-rwxr-xr-xbin/trace4
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/trace b/bin/trace
index 0256da6..de6a83f 100755
--- a/bin/trace
+++ b/bin/trace
@@ -239,7 +239,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+//;