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

NotFound at svn.parrot.org NotFound at svn.parrot.org
Tue Jun 8 23:58:15 UTC 2010


Author: NotFound
Date: Tue Jun  8 23:58:15 2010
New Revision: 47497
URL: https://trac.parrot.org/parrot/changeset/47497

Log:
drop const that upset some compiler

Modified:
   trunk/src/pmc/bytebuffer.pmc

Modified: trunk/src/pmc/bytebuffer.pmc
==============================================================================
--- trunk/src/pmc/bytebuffer.pmc	Tue Jun  8 23:51:05 2010	(r47496)
+++ trunk/src/pmc/bytebuffer.pmc	Tue Jun  8 23:58:15 2010	(r47497)
@@ -61,7 +61,7 @@
     }
 
     VTABLE void mark() {
-        const STRING * source;
+        STRING * source;
         GET_ATTR_source(INTERP, SELF, source);
         if (!STRING_IS_NULL(source))
             Parrot_gc_mark_STRING_alive(INTERP, source);


More information about the parrot-commits mailing list