Title: [128734] trunk/Source/WTF
Revision
128734
Author
[email protected]
Date
2012-09-17 02:50:16 -0700 (Mon, 17 Sep 2012)

Log Message

Unreviewed compilation fix.

* wtf/MemoryInstrumentation.h:
(WTF::MemoryInstrumentation::reportObjectMemoryUsage):

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (128733 => 128734)


--- trunk/Source/WTF/ChangeLog	2012-09-17 09:44:39 UTC (rev 128733)
+++ trunk/Source/WTF/ChangeLog	2012-09-17 09:50:16 UTC (rev 128734)
@@ -1,3 +1,10 @@
+2012-09-17  Ilya Tikhonovsky  <[email protected]>
+
+        Unreviewed compilation fix.
+
+        * wtf/MemoryInstrumentation.h:
+        (WTF::MemoryInstrumentation::reportObjectMemoryUsage):
+
 2012-09-15  Yury Semikhatsky  <[email protected]>
 
         Web Inspector: automatically detect if class has reportMemoryUsage method

Modified: trunk/Source/WTF/wtf/MemoryInstrumentation.h (128733 => 128734)


--- trunk/Source/WTF/wtf/MemoryInstrumentation.h	2012-09-17 09:44:39 UTC (rev 128733)
+++ trunk/Source/WTF/wtf/MemoryInstrumentation.h	2012-09-17 09:50:16 UTC (rev 128734)
@@ -123,7 +123,7 @@
     }
 
     template<typename T, typename Type>
-    static void reportObjectMemoryUsage(const T* const& object, MemoryObjectInfo* memoryObjectInfo, ...)
+    static void reportObjectMemoryUsage(const T* const&, MemoryObjectInfo* memoryObjectInfo, ...)
     {
         memoryObjectInfo->reportObjectInfo<T>(0, sizeof(T));
     }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to