Title: [176603] trunk/Source/WTF
Revision
176603
Author
oli...@apple.com
Date
2014-12-01 13:49:00 -0800 (Mon, 01 Dec 2014)

Log Message

Fix 32-bit build.

* wtf/IndexedIterator.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (176602 => 176603)


--- trunk/Source/WTF/ChangeLog	2014-12-01 21:15:42 UTC (rev 176602)
+++ trunk/Source/WTF/ChangeLog	2014-12-01 21:49:00 UTC (rev 176603)
@@ -1,3 +1,9 @@
+2014-12-01  Oliver Hunt  <oli...@apple.com>
+
+        Fix 32-bit build.
+
+        * wtf/IndexedIterator.h:
+
 2014-11-17  Oliver Hunt  <oli...@apple.com>
 
         Make sure range based iteration of Vector<> still receives bounds checking

Modified: trunk/Source/WTF/wtf/IndexedIterator.h (176602 => 176603)


--- trunk/Source/WTF/wtf/IndexedIterator.h	2014-12-01 21:15:42 UTC (rev 176602)
+++ trunk/Source/WTF/wtf/IndexedIterator.h	2014-12-01 21:49:00 UTC (rev 176603)
@@ -225,7 +225,7 @@
         return result -= static_cast<unsigned long long>(decrement);
     }
 
-#if __SIZEOF_SIZE_T__ != __SIZEOF_INT__
+#if __SIZEOF_SIZE_T__ != __SIZEOF_INT__ || !PLATFORM(WIN)
     IndexedIterator operator+(unsigned increment) const
     {
         IndexedIterator result(*this);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to