[svn:parrot] r46298 - branches/codestring/src/pmc

coke at svn.parrot.org coke at svn.parrot.org
Wed May 5 02:54:54 UTC 2010


Author: coke
Date: Wed May  5 02:54:31 2010
New Revision: 46298
URL: https://trac.parrot.org/parrot/changeset/46298

Log:
remove vtable - was causing build failure on rakudo. :(

Modified:
   branches/codestring/src/pmc/codestring.pmc

Modified: branches/codestring/src/pmc/codestring.pmc
==============================================================================
--- branches/codestring/src/pmc/codestring.pmc	Wed May  5 01:24:09 2010	(r46297)
+++ branches/codestring/src/pmc/codestring.pmc	Wed May  5 02:54:31 2010	(r46298)
@@ -456,13 +456,6 @@
     RETURN(STRING *out);
 }
 
-    VTABLE void i_concatenate(PMC *value) {
-        PMC *strings;
-        GET_ATTR_strings(INTERP, SELF, strings);
-
-        VTABLE_push_pmc(INTERP, strings, value);
-    }
-
     VTABLE void i_concatenate_str(STRING *value) {
         PMC *strings;
         GET_ATTR_strings(INTERP, SELF, strings);


More information about the parrot-commits mailing list