Title: [92611] trunk/Source/WebCore
Revision
92611
Author
[email protected]
Date
2011-08-08 11:26:03 -0700 (Mon, 08 Aug 2011)

Log Message

Fix build.

* platform/PODRedBlackTree.h:
(WebCore::PODRedBlackTree::Counter::visit):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (92610 => 92611)


--- trunk/Source/WebCore/ChangeLog	2011-08-08 18:09:19 UTC (rev 92610)
+++ trunk/Source/WebCore/ChangeLog	2011-08-08 18:26:03 UTC (rev 92611)
@@ -1,3 +1,10 @@
+2011-08-08  Anders Carlsson  <[email protected]>
+
+        Fix build.
+
+        * platform/PODRedBlackTree.h:
+        (WebCore::PODRedBlackTree::Counter::visit):
+
 2011-08-08  Alexandru Chiculita  <[email protected]>
 
         Optimize floating elements lookup

Modified: trunk/Source/WebCore/platform/PODRedBlackTree.h (92610 => 92611)


--- trunk/Source/WebCore/platform/PODRedBlackTree.h	2011-08-08 18:09:19 UTC (rev 92610)
+++ trunk/Source/WebCore/platform/PODRedBlackTree.h	2011-08-08 18:26:03 UTC (rev 92611)
@@ -712,7 +712,7 @@
         Counter()
             : m_count(0) { }
 
-        virtual void visit(const T& data) { ++m_count; }
+        virtual void visit(const T&) { ++m_count; }
         int count() const { return m_count; }
 
     private:
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to