From ac7cd484d8872d087e0a973d9c83e37a3ddd5965 Mon Sep 17 00:00:00 2001 From: David Young Date: Tue, 18 Feb 2020 16:31:35 -0600 Subject: Filter all of the new _USED / _UNUSED type modifiers. --- bin/trace | 4 ++++ 1 file changed, 4 insertions(+) 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+//; -- cgit v0.12