[svn:parrot] r41177 - trunk/src/pmc
NotFound at svn.parrot.org
NotFound at svn.parrot.org
Wed Sep 9 22:36:14 UTC 2009
Author: NotFound
Date: Wed Sep 9 22:36:12 2009
New Revision: 41177
URL: https://trac.parrot.org/parrot/changeset/41177
Log:
[cage] fix c++ failure from r41176
Modified:
trunk/src/pmc/eval.pmc
Modified: trunk/src/pmc/eval.pmc
==============================================================================
--- trunk/src/pmc/eval.pmc Wed Sep 9 22:29:36 2009 (r41176)
+++ trunk/src/pmc/eval.pmc Wed Sep 9 22:36:12 2009 (r41177)
@@ -186,7 +186,7 @@
}
/* Quick and dirty fix for TT #995 */
- if (cur_cs == interp->initial_pf) {
+ if ((struct PackFile *)cur_cs == interp->initial_pf) {
SUPER();
return;
}
More information about the parrot-commits
mailing list