From c8a1bc55603b937e3a30fe044009345bd1350dd8 Mon Sep 17 00:00:00 2001 From: "oliver@apple.com" Date: Thu, 29 Sep 2011 23:09:42 +0000 Subject: [PATCH] Build fix. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@96373 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- Source/JavaScriptCore/ChangeLog | 6 ++++++ Source/JavaScriptCore/heap/AllocationSpace.h | 2 ++ 2 files changed, 8 insertions(+) diff --git a/Source/JavaScriptCore/ChangeLog b/Source/JavaScriptCore/ChangeLog index 9add436..2da54ed 100644 --- a/Source/JavaScriptCore/ChangeLog +++ b/Source/JavaScriptCore/ChangeLog @@ -1,5 +1,11 @@ 2011-09-29 Oliver Hunt + Build fix. + + * heap/AllocationSpace.h: + +2011-09-29 Oliver Hunt + Add logic to collect dirty objects as roots https://bugs.webkit.org/show_bug.cgi?id=69100 diff --git a/Source/JavaScriptCore/heap/AllocationSpace.h b/Source/JavaScriptCore/heap/AllocationSpace.h index cc51d1d..550cb9a 100644 --- a/Source/JavaScriptCore/heap/AllocationSpace.h +++ b/Source/JavaScriptCore/heap/AllocationSpace.h @@ -51,7 +51,9 @@ public: void setHighWaterMark(size_t bytes) { m_markedSpace.setHighWaterMark(bytes); } size_t highWaterMark() { return m_markedSpace.highWaterMark(); } +#if ENABLE(GGC) void gatherDirtyCells(MarkedBlock::DirtyCellVector&); +#endif template typename Functor::ReturnType forEachCell(Functor&); template typename Functor::ReturnType forEachCell(); -- 2.7.4