From 1853ea825ecfd838618dfe349319350b0d1e42dc Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Thu, 14 Jun 2007 18:51:48 -0600 Subject: [PATCH] change Heap::markTenured() return type to void --- src/heap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/heap.h b/src/heap.h index 12350016d2..09be0dbb04 100644 --- a/src/heap.h +++ b/src/heap.h @@ -23,7 +23,7 @@ class Heap { virtual ~Heap() { } virtual void collect(CollectionType type, Iterator* it) = 0; virtual bool isTenured(void** p) = 0; - virtual bool markTenured(void** p); + virtual void markTenured(void** p); }; #endif//HEAP_H