diff options
author | David Young <dyoung@hdfgroup.org> | 2020-02-18 22:31:35 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-02-18 22:31:35 (GMT) |
commit | ac7cd484d8872d087e0a973d9c83e37a3ddd5965 (patch) | |
tree | 12c6dc481dbca5789e865d901bda566fba3e8149 /bin | |
parent | f9a8fd5a4c8f3c8f2d707dd384582181a0c33077 (diff) | |
download | hdf5-ac7cd484d8872d087e0a973d9c83e37a3ddd5965.zip hdf5-ac7cd484d8872d087e0a973d9c83e37a3ddd5965.tar.gz hdf5-ac7cd484d8872d087e0a973d9c83e37a3ddd5965.tar.bz2 |
Filter all of the new _USED / _UNUSED type modifiers.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/trace | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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+//; |