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

mikehh at svn.parrot.org mikehh at svn.parrot.org
Fri Jun 25 04:41:49 UTC 2010


Author: mikehh
Date: Fri Jun 25 04:41:49 2010
New Revision: 47825
URL: https://trac.parrot.org/parrot/changeset/47825

Log:
remove const(s) to get g++ to build

Modified:
   trunk/src/pmc/object.pmc

Modified: trunk/src/pmc/object.pmc
==============================================================================
--- trunk/src/pmc/object.pmc	Fri Jun 25 04:39:53 2010	(r47824)
+++ trunk/src/pmc/object.pmc	Fri Jun 25 04:41:49 2010	(r47825)
@@ -669,7 +669,7 @@
         if (SUPER(classname))
             return 1;
         else {
-            PMC const * const _class = VTABLE_get_class(INTERP, SELF);
+            PMC * _class = VTABLE_get_class(INTERP, SELF);
             return VTABLE_isa(INTERP, _class, classname);
         }
     }


More information about the parrot-commits mailing list