[svn:parrot] r45240 - trunk/src/pmc

bacek at svn.parrot.org bacek at svn.parrot.org
Sun Mar 28 12:35:40 UTC 2010


Author: bacek
Date: Sun Mar 28 12:35:40 2010
New Revision: 45240
URL: https://trac.parrot.org/parrot/changeset/45240

Log:
Use ASSERT_ARG in StringHandle helper functions.

Modified:
   trunk/src/pmc/stringhandle.pmc

Modified: trunk/src/pmc/stringhandle.pmc
==============================================================================
--- trunk/src/pmc/stringhandle.pmc	Sun Mar 28 12:26:24 2010	(r45239)
+++ trunk/src/pmc/stringhandle.pmc	Sun Mar 28 12:35:40 2010	(r45240)
@@ -51,6 +51,7 @@
 static int
 encoding_is_utf8(PARROT_INTERP, ARGIN_NULLOK(STRING *s))
 {
+    ASSERT_ARGS(encoding_is_utf8)
     if (STRING_IS_NULL(s))
         return 0;
     else


More information about the parrot-commits mailing list