[svn:parrot] r47006 - trunk/src/string/encoding

petdance at svn.parrot.org petdance at svn.parrot.org
Wed May 26 02:08:28 UTC 2010


Author: petdance
Date: Wed May 26 02:08:28 2010
New Revision: 47006
URL: https://trac.parrot.org/parrot/changeset/47006

Log:
reran headerizer

Modified:
   trunk/src/string/encoding/ucs4.c

Modified: trunk/src/string/encoding/ucs4.c
==============================================================================
--- trunk/src/string/encoding/ucs4.c	Wed May 26 02:04:07 2010	(r47005)
+++ trunk/src/string/encoding/ucs4.c	Wed May 26 02:08:28 2010	(r47006)
@@ -104,13 +104,16 @@
         __attribute__nonnull__(1)
         __attribute__nonnull__(2);
 
-static UINTVAL ucs4_decode_and_advance(SHIM_INTERP, ARGMOD(String_iter *i))
+static UINTVAL ucs4_decode_and_advance(PARROT_INTERP,
+    ARGMOD(String_iter *i))
+        __attribute__nonnull__(1)
         __attribute__nonnull__(2)
         FUNC_MODIFIES(*i);
 
-static void ucs4_encode_and_advance(SHIM_INTERP,
+static void ucs4_encode_and_advance(PARROT_INTERP,
     ARGMOD(String_iter *i),
     UINTVAL c)
+        __attribute__nonnull__(1)
         __attribute__nonnull__(2)
         FUNC_MODIFIES(*i);
 
@@ -120,9 +123,10 @@
         __attribute__nonnull__(1)
         __attribute__nonnull__(2);
 
-static void ucs4_set_position(SHIM_INTERP,
+static void ucs4_set_position(PARROT_INTERP,
     ARGMOD(String_iter *i),
     UINTVAL n)
+        __attribute__nonnull__(1)
         __attribute__nonnull__(2)
         FUNC_MODIFIES(*i);
 
@@ -155,14 +159,17 @@
        PARROT_ASSERT_ARG(interp) \
     , PARROT_ASSERT_ARG(src))
 #define ASSERT_ARGS_ucs4_decode_and_advance __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
-       PARROT_ASSERT_ARG(i))
+       PARROT_ASSERT_ARG(interp) \
+    , PARROT_ASSERT_ARG(i))
 #define ASSERT_ARGS_ucs4_encode_and_advance __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
-       PARROT_ASSERT_ARG(i))
+       PARROT_ASSERT_ARG(interp) \
+    , PARROT_ASSERT_ARG(i))
 #define ASSERT_ARGS_ucs4_hash __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
        PARROT_ASSERT_ARG(interp) \
     , PARROT_ASSERT_ARG(s))
 #define ASSERT_ARGS_ucs4_set_position __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
-       PARROT_ASSERT_ARG(i))
+       PARROT_ASSERT_ARG(interp) \
+    , PARROT_ASSERT_ARG(i))
 /* Don't modify between HEADERIZER BEGIN / HEADERIZER END.  Your changes will be lost. */
 /* HEADERIZER END: static */
 


More information about the parrot-commits mailing list