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

mikehh at svn.parrot.org mikehh at svn.parrot.org
Sun Jun 6 00:05:18 UTC 2010


Author: mikehh
Date: Sun Jun  6 00:05:18 2010
New Revision: 47408
URL: https://trac.parrot.org/parrot/changeset/47408

Log:
fix g++ build - remove cast to (PObj *) as change from Parrot_gc_mark_PObj_alive to Parrot_gc_mark_PMC_alive

Modified:
   trunk/src/pmc/orderedhash.pmc

Modified: trunk/src/pmc/orderedhash.pmc
==============================================================================
--- trunk/src/pmc/orderedhash.pmc	Sat Jun  5 23:26:24 2010	(r47407)
+++ trunk/src/pmc/orderedhash.pmc	Sun Jun  6 00:05:18 2010	(r47408)
@@ -263,7 +263,7 @@
                 PARROT_ORDEREDHASH(SELF);
 
         if (attrs->hash)
-            Parrot_gc_mark_PMC_alive(INTERP, (PObj *)attrs->hash);
+            Parrot_gc_mark_PMC_alive(INTERP, attrs->hash);
 
         /* Don't mark C<first> and C<last>. They are in lookup hash anyway */
     }


More information about the parrot-commits mailing list