[svn:parrot] r47296 - branches/gc_massacre/src/gc
mikehh at svn.parrot.org
mikehh at svn.parrot.org
Wed Jun 2 11:59:31 UTC 2010
Author: mikehh
Date: Wed Jun 2 11:59:31 2010
New Revision: 47296
URL: https://trac.parrot.org/parrot/changeset/47296
Log:
fix g++ build failure, remove trailing space
Modified:
branches/gc_massacre/src/gc/gc_tms.c
Modified: branches/gc_massacre/src/gc/gc_tms.c
==============================================================================
--- branches/gc_massacre/src/gc/gc_tms.c Wed Jun 2 10:30:49 2010 (r47295)
+++ branches/gc_massacre/src/gc/gc_tms.c Wed Jun 2 11:59:31 2010 (r47296)
@@ -668,7 +668,7 @@
Parrot_gc_trace_root(interp, NULL, GC_TRACE_FULL);
if (interp->pdb && interp->pdb->debugger) {
- Parrot_gc_trace_root(interp->pdb->debugger, NULL, 0);
+ Parrot_gc_trace_root(interp->pdb->debugger, NULL, Parrot_gc_trace_type(0));
}
gc_tms_mark_pmc_header(interp, PMCNULL);
@@ -806,7 +806,7 @@
if (!Parrot_gc_pool_is_owned(self->pmc_allocator, Obj2LLH(ptr)))
return 0;
-#if 1
+#if 1
/* Pool.is_owned isn't precise enough (yet) */
if (Parrot_gc_list_is_owned(interp, self->grey_objects, item))
return 1;
More information about the parrot-commits
mailing list