Title: [155829] trunk/Source/WTF
Revision
155829
Author
par...@webkit.org
Date
2013-09-15 17:45:50 -0700 (Sun, 15 Sep 2013)

Log Message

Fix build with Visual Studio 2012 after r153764.
https://bugs.webkit.org/show_bug.cgi?id=121406

Reviewed by Brent Fulgham.

* wtf/MathExtras.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (155828 => 155829)


--- trunk/Source/WTF/ChangeLog	2013-09-16 00:02:38 UTC (rev 155828)
+++ trunk/Source/WTF/ChangeLog	2013-09-16 00:45:50 UTC (rev 155829)
@@ -1,3 +1,12 @@
+2013-09-15  Patrick Gansterer  <par...@webkit.org>
+
+        Fix build with Visual Studio 2012 after r153764.
+        https://bugs.webkit.org/show_bug.cgi?id=121406
+
+        Reviewed by Brent Fulgham.
+
+        * wtf/MathExtras.h:
+
 2013-09-15  Alberto Garcia  <be...@igalia.com>
 
         Unreviewed GTK gardening.

Modified: trunk/Source/WTF/wtf/MathExtras.h (155828 => 155829)


--- trunk/Source/WTF/wtf/MathExtras.h	2013-09-16 00:02:38 UTC (rev 155828)
+++ trunk/Source/WTF/wtf/MathExtras.h	2013-09-16 00:45:50 UTC (rev 155829)
@@ -144,7 +144,7 @@
 inline long lroundf(float num) { return static_cast<long>(roundf(num)); }
 inline double trunc(double num) { return num > 0 ? floor(num) : ceil(num); }
 
-#if defined(_MSC_VER) && (_MSC_VER <= 1600)
+#if _MSC_VER < 1800
 
 inline double remainder(double numerator, double denominator)
 {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to