[svn:parrot] r38323 - branches/pmc_pct/src/pmc

bacek at svn.parrot.org bacek at svn.parrot.org
Fri Apr 24 15:19:33 UTC 2009


Author: bacek
Date: Fri Apr 24 15:19:33 2009
New Revision: 38323
URL: https://trac.parrot.org/parrot/changeset/38323

Log:
[cage] Fix string.pmc VTABLE declarations.

Modified:
   branches/pmc_pct/src/pmc/string.pmc

Modified: branches/pmc_pct/src/pmc/string.pmc
==============================================================================
--- branches/pmc_pct/src/pmc/string.pmc	Fri Apr 24 15:17:45 2009	(r38322)
+++ branches/pmc_pct/src/pmc/string.pmc	Fri Apr 24 15:19:33 2009	(r38323)
@@ -655,7 +655,7 @@
         return string_ord(INTERP, s, key_integer(INTERP, key));
     }
 
-    void set_string_keyed(PMC *key, STRING * const value) {
+    VTABLE void set_string_keyed(PMC *key, STRING * const value) {
         STRING * const s   = SELF.get_string();
         const INTVAL   len = Parrot_str_byte_length(INTERP, value);
         Parrot_str_replace(INTERP, s, key_integer(INTERP, key), len, value, NULL);


More information about the parrot-commits mailing list