Title: [104436] trunk/Source/_javascript_Core
Revision
104436
Author
[email protected]
Date
2012-01-08 23:18:47 -0800 (Sun, 08 Jan 2012)

Log Message

Fix compilation error about ListHashSetReverseIterator
https://bugs.webkit.org/show_bug.cgi?id=75372

Reviewed by Darin Adler.

There is a typo in class ListHashSetReverseIterator:
typedef ListHashSetConstIterator<ValueArg, inlineCapacity, HashArg> const_reverse_iterator;
Should be
typedef ListHashSetConstReverseIterator<ValueArg, inlineCapacity, HashArg> const_reverse_iterator;

* wtf/ListHashSet.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (104435 => 104436)


--- trunk/Source/_javascript_Core/ChangeLog	2012-01-09 07:15:10 UTC (rev 104435)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-01-09 07:18:47 UTC (rev 104436)
@@ -1,3 +1,17 @@
+2012-01-08  Xianzhu Wang  <[email protected]>
+
+        Fix compilation error about ListHashSetReverseIterator
+        https://bugs.webkit.org/show_bug.cgi?id=75372
+
+        Reviewed by Darin Adler.
+
+        There is a typo in class ListHashSetReverseIterator:
+        typedef ListHashSetConstIterator<ValueArg, inlineCapacity, HashArg> const_reverse_iterator;
+        Should be
+        typedef ListHashSetConstReverseIterator<ValueArg, inlineCapacity, HashArg> const_reverse_iterator;
+
+        * wtf/ListHashSet.h:
+
 2012-01-08  Ryosuke Niwa  <[email protected]>
 
         WinCE build fix after r104415.

Modified: trunk/Source/_javascript_Core/wtf/ListHashSet.h (104435 => 104436)


--- trunk/Source/_javascript_Core/wtf/ListHashSet.h	2012-01-09 07:15:10 UTC (rev 104435)
+++ trunk/Source/_javascript_Core/wtf/ListHashSet.h	2012-01-09 07:18:47 UTC (rev 104436)
@@ -375,7 +375,7 @@
     private:
         typedef ListHashSet<ValueArg, inlineCapacity, HashArg> ListHashSetType;
         typedef ListHashSetReverseIterator<ValueArg, inlineCapacity, HashArg> reverse_iterator;
-        typedef ListHashSetConstIterator<ValueArg, inlineCapacity, HashArg> const_reverse_iterator;
+        typedef ListHashSetConstReverseIterator<ValueArg, inlineCapacity, HashArg> const_reverse_iterator;
         typedef ListHashSetNode<ValueArg, inlineCapacity> Node;
         typedef ValueArg ValueType;
         typedef ValueType& ReferenceType;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to