Title: [185433] trunk/Source/WTF
Revision
185433
Author
basile_clem...@apple.com
Date
2015-06-10 15:44:12 -0700 (Wed, 10 Jun 2015)

Log Message

Unreviewed, fix an typo in unused template code.

* wtf/TinyPtrSet.h:
(WTF::TinyPtrSet::iterator::operator*): s/at(index)/at(m_index)/

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (185432 => 185433)


--- trunk/Source/WTF/ChangeLog	2015-06-10 22:32:36 UTC (rev 185432)
+++ trunk/Source/WTF/ChangeLog	2015-06-10 22:44:12 UTC (rev 185433)
@@ -1,3 +1,10 @@
+2015-06-10  Basile Clement  <basile_clem...@apple.com>
+
+        Unreviewed, fix an typo in unused template code.
+
+        * wtf/TinyPtrSet.h:
+        (WTF::TinyPtrSet::iterator::operator*): s/at(index)/at(m_index)/
+
 2015-06-09  Csaba Osztrogonác  <o...@webkit.org>
 
         [cmake] Fix the style issues in cmake project files

Modified: trunk/Source/WTF/wtf/TinyPtrSet.h (185432 => 185433)


--- trunk/Source/WTF/wtf/TinyPtrSet.h	2015-06-10 22:32:36 UTC (rev 185432)
+++ trunk/Source/WTF/wtf/TinyPtrSet.h	2015-06-10 22:44:12 UTC (rev 185433)
@@ -343,7 +343,7 @@
         {
         }
         
-        T operator*() const { return m_set->at(index); }
+        T operator*() const { return m_set->at(m_index); }
         iterator& operator++()
         {
             m_index++;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to