From: oliver@apple.com Date: Thu, 29 Sep 2011 23:09:42 +0000 (+0000) Subject: Build fix. X-Git-Tag: 070512121124~23320 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c8a1bc55603b937e3a30fe044009345bd1350dd8;p=profile%2Fivi%2Fwebkit-efl.git Build fix. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@96373 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- 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();