[svn:parrot] r37804 - trunk/t/codingstd

coke at svn.parrot.org coke at svn.parrot.org
Sat Mar 28 16:52:12 UTC 2009


Author: coke
Date: Sat Mar 28 16:52:11 2009
New Revision: 37804
URL: https://trac.parrot.org/parrot/changeset/37804

Log:
[t] skip another ARG modifier.

Modified:
   trunk/t/codingstd/c_function_docs.t

Modified: trunk/t/codingstd/c_function_docs.t
==============================================================================
--- trunk/t/codingstd/c_function_docs.t	Sat Mar 28 15:44:33 2009	(r37803)
+++ trunk/t/codingstd/c_function_docs.t	Sat Mar 28 16:52:11 2009	(r37804)
@@ -48,7 +48,7 @@
         $function_decl =~ s/^\s*PARROT_[A-Z_]*\b\s+//gm;
 
         # strip out any ARG* modifiers
-        $function_decl =~ s/ARG(?:IN|IN_NULLOK|OUT|MOD)\((.*?)\)/$1/g;
+        $function_decl =~ s/ARG(?:IN|IN_NULLOK|OUT|MOD|FREE)\((.*?)\)/$1/g;
 
         # strip out the SHIM modifier
         $function_decl =~ s/SHIM\((.*?)\)/$1/g;


More information about the parrot-commits mailing list