Title: [96373] trunk/Source/_javascript_Core
Revision
96373
Author
[email protected]
Date
2011-09-29 16:09:42 -0700 (Thu, 29 Sep 2011)

Log Message

Build fix.

Modified Paths


Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (96372 => 96373)


--- trunk/Source/_javascript_Core/ChangeLog	2011-09-29 22:52:45 UTC (rev 96372)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-09-29 23:09:42 UTC (rev 96373)
@@ -1,5 +1,11 @@
 2011-09-29  Oliver Hunt  <[email protected]>
 
+        Build fix.
+
+        * heap/AllocationSpace.h:
+
+2011-09-29  Oliver Hunt  <[email protected]>
+
         Add logic to collect dirty objects as roots
         https://bugs.webkit.org/show_bug.cgi?id=69100
 

Modified: trunk/Source/_javascript_Core/heap/AllocationSpace.h (96372 => 96373)


--- trunk/Source/_javascript_Core/heap/AllocationSpace.h	2011-09-29 22:52:45 UTC (rev 96372)
+++ trunk/Source/_javascript_Core/heap/AllocationSpace.h	2011-09-29 23:09:42 UTC (rev 96373)
@@ -51,7 +51,9 @@
     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();
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to