[svn:parrot] r47633 - branches/gsoc_nfg/src/string
darbelo at svn.parrot.org
darbelo at svn.parrot.org
Tue Jun 15 00:34:39 UTC 2010
Author: darbelo
Date: Tue Jun 15 00:34:39 2010
New Revision: 47633
URL: https://trac.parrot.org/parrot/changeset/47633
Log:
Add a missing ASSERT_ARGS()
Modified:
branches/gsoc_nfg/src/string/grapheme.c
Modified: branches/gsoc_nfg/src/string/grapheme.c
==============================================================================
--- branches/gsoc_nfg/src/string/grapheme.c Tue Jun 15 00:31:23 2010 (r47632)
+++ branches/gsoc_nfg/src/string/grapheme.c Tue Jun 15 00:34:39 2010 (r47633)
@@ -161,6 +161,7 @@
UINTVAL
get_grapheme_base(PARROT_INTERP, grapheme_table *table, int32_t codepoint)
{
+ ASSERT_ARGS(get_grapheme_base)
const int32_t index = -1 - codepoint;
if (codepoint > 0)
More information about the parrot-commits
mailing list