Title: [186990] trunk/Source/WebCore
Revision
186990
Author
[email protected]
Date
2015-07-18 05:20:25 -0700 (Sat, 18 Jul 2015)

Log Message

REGRESSION (r186976): Windows build broke due to missing definition of M_PI

Attempt to fix the following build failure:

    PathUtilities.cpp(182): error C2065: 'M_PI' : undeclared identifier [...\Source\WebCore\WebCore.vcxproj\WebCore.vcxproj]

* platform/graphics/PathUtilities.cpp: Include <wtf/MathExtras.h>.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (186989 => 186990)


--- trunk/Source/WebCore/ChangeLog	2015-07-18 12:19:44 UTC (rev 186989)
+++ trunk/Source/WebCore/ChangeLog	2015-07-18 12:20:25 UTC (rev 186990)
@@ -1,3 +1,13 @@
+2015-07-18  David Kilzer  <[email protected]>
+
+        REGRESSION (r186976): Windows build broke due to missing definition of M_PI
+
+        Attempt to fix the following build failure:
+
+            PathUtilities.cpp(182): error C2065: 'M_PI' : undeclared identifier [...\Source\WebCore\WebCore.vcxproj\WebCore.vcxproj]
+
+        * platform/graphics/PathUtilities.cpp: Include <wtf/MathExtras.h>.
+
 2015-07-17  Zalan Bujtas  <[email protected]>
 
         REGRESSION (r169105): Do not assign a renderer to multiple selection subtrees.

Modified: trunk/Source/WebCore/platform/graphics/PathUtilities.cpp (186989 => 186990)


--- trunk/Source/WebCore/platform/graphics/PathUtilities.cpp	2015-07-18 12:19:44 UTC (rev 186989)
+++ trunk/Source/WebCore/platform/graphics/PathUtilities.cpp	2015-07-18 12:20:25 UTC (rev 186990)
@@ -31,6 +31,7 @@
 #include "FloatRect.h"
 #include "GeometryUtilities.h"
 #include <math.h>
+#include <wtf/MathExtras.h>
 
 namespace WebCore {
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to