Build fix.
authoroliver@apple.com <oliver@apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Thu, 29 Sep 2011 23:09:42 +0000 (23:09 +0000)
committeroliver@apple.com <oliver@apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Thu, 29 Sep 2011 23:09:42 +0000 (23:09 +0000)
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@96373 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Source/JavaScriptCore/ChangeLog
Source/JavaScriptCore/heap/AllocationSpace.h

index 9add436..2da54ed 100644 (file)
@@ -1,5 +1,11 @@
 2011-09-29  Oliver Hunt  <oliver@apple.com>
 
+        Build fix.
+
+        * heap/AllocationSpace.h:
+
+2011-09-29  Oliver Hunt  <oliver@apple.com>
+
         Add logic to collect dirty objects as roots
         https://bugs.webkit.org/show_bug.cgi?id=69100
 
index cc51d1d..550cb9a 100644 (file)
@@ -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> typename Functor::ReturnType forEachCell(Functor&);
     template<typename Functor> typename Functor::ReturnType forEachCell();