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

bacek at svn.parrot.org bacek at svn.parrot.org
Wed Jul 15 14:40:35 UTC 2009


Author: bacek
Date: Wed Jul 15 14:40:33 2009
New Revision: 40105
URL: https://trac.parrot.org/parrot/changeset/40105

Log:
[cage] Fix broken build with c++ compilers.

Modified:
   trunk/src/pmc/hash.pmc

Modified: trunk/src/pmc/hash.pmc
==============================================================================
--- trunk/src/pmc/hash.pmc	Wed Jul 15 13:55:49 2009	(r40104)
+++ trunk/src/pmc/hash.pmc	Wed Jul 15 14:40:33 2009	(r40105)
@@ -541,7 +541,7 @@
             case enum_type_STRING:
             case enum_type_PMC:
                 new_hash = parrot_create_hash(interp,
-                        type,
+                        (PARROT_DATA_TYPE)type,
                         old_hash->key_type,
                         old_hash->compare,
                         old_hash->hash_val);


More information about the parrot-commits mailing list