Title: [143254] trunk/Source/WTF
Revision
143254
Author
benja...@webkit.org
Date
2013-02-18 12:25:41 -0800 (Mon, 18 Feb 2013)

Log Message

Remove Vector::dataSlot(), it has no implementation
https://bugs.webkit.org/show_bug.cgi?id=109999

Patch by Benjamin Poulain <bpoul...@apple.com> on 2013-02-18
Reviewed by Andreas Kling.

VectorBufferBase does not implement any function bufferSlot().
The file only compiles because that part of the template is never
instantiated.

* wtf/Vector.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (143253 => 143254)


--- trunk/Source/WTF/ChangeLog	2013-02-18 20:22:42 UTC (rev 143253)
+++ trunk/Source/WTF/ChangeLog	2013-02-18 20:25:41 UTC (rev 143254)
@@ -1,3 +1,16 @@
+2013-02-18  Benjamin Poulain  <bpoul...@apple.com>
+
+        Remove Vector::dataSlot(), it has no implementation
+        https://bugs.webkit.org/show_bug.cgi?id=109999
+
+        Reviewed by Andreas Kling.
+
+        VectorBufferBase does not implement any function bufferSlot().
+        The file only compiles because that part of the template is never
+        instantiated.
+
+        * wtf/Vector.h:
+
 2013-02-18  Laszlo Gombos  <l.gom...@samsung.com>
 
         Move ENABLE macros for WebCore out from Platform.h

Modified: trunk/Source/WTF/wtf/Vector.h (143253 => 143254)


--- trunk/Source/WTF/wtf/Vector.h	2013-02-18 20:22:42 UTC (rev 143253)
+++ trunk/Source/WTF/wtf/Vector.h	2013-02-18 20:25:41 UTC (rev 143254)
@@ -564,7 +564,6 @@
 
         T* data() { return m_buffer.buffer(); }
         const T* data() const { return m_buffer.buffer(); }
-        T** dataSlot() { return m_buffer.bufferSlot(); }
 
         iterator begin() { return data(); }
         iterator end() { return begin() + m_size; }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to