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

NotFound at svn.parrot.org NotFound at svn.parrot.org
Sat Feb 21 12:16:33 UTC 2009


Author: NotFound
Date: Sat Feb 21 12:16:32 2009
New Revision: 36922
URL: https://trac.parrot.org/parrot/changeset/36922

Log:
[cage] fix c++ build in lexpad.pmc

Modified:
   trunk/src/pmc/lexpad.pmc

Modified: trunk/src/pmc/lexpad.pmc
==============================================================================
--- trunk/src/pmc/lexpad.pmc	Sat Feb 21 10:47:23 2009	(r36921)
+++ trunk/src/pmc/lexpad.pmc	Sat Feb 21 12:16:32 2009	(r36922)
@@ -91,7 +91,7 @@
     }
 
     VTABLE void set_pointer(void *ctx) {
-        SET_ATTR_ctx(INTERP, SELF, ctx);
+        SET_ATTR_ctx(INTERP, SELF, (struct Parrot_Context *)ctx);
     }
 
     VTABLE INTVAL elements() {


More information about the parrot-commits mailing list