[svn:parrot] r38321 - branches/pmc_pct/src/pmc
bacek at svn.parrot.org
bacek at svn.parrot.org
Fri Apr 24 15:17:20 UTC 2009
Author: bacek
Date: Fri Apr 24 15:17:20 2009
New Revision: 38321
URL: https://trac.parrot.org/parrot/changeset/38321
Log:
[cage] Fix multisub.pmc VTABLE and METHODs declarations.
Modified:
branches/pmc_pct/src/pmc/multisub.pmc
Modified: branches/pmc_pct/src/pmc/multisub.pmc
==============================================================================
--- branches/pmc_pct/src/pmc/multisub.pmc Fri Apr 24 15:09:22 2009 (r38320)
+++ branches/pmc_pct/src/pmc/multisub.pmc Fri Apr 24 15:17:20 2009 (r38321)
@@ -24,7 +24,7 @@
pmclass MultiSub extends ResizablePMCArray need_ext provides array {
- void push_pmc(PMC *value) {
+ VTABLE void push_pmc(PMC *value) {
STRING * const _sub = CONST_STRING(interp, "Sub");
STRING * const _nci = CONST_STRING(interp, "NCI");
@@ -99,7 +99,7 @@
(N, I, S, P). It should sort the argument list according to closeness
to this input argument list and return an iterator over that list. */
- METHOD PMC *get_iter(PMC *args) {
+ METHOD get_iter(PMC *args) {
STRING * const _array = CONST_STRING(interp, "Array");
STRING * const _string = CONST_STRING(interp, "String");
More information about the parrot-commits
mailing list