Title: [180262] trunk/Source/_javascript_Core
Revision
180262
Author
[email protected]
Date
2015-02-18 01:35:14 -0800 (Wed, 18 Feb 2015)

Log Message

URTBF after r180258 to fix Windows build.

* runtime/MathCommon.cpp:
(JSC::mathPowInternal):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (180261 => 180262)


--- trunk/Source/_javascript_Core/ChangeLog	2015-02-18 09:00:12 UTC (rev 180261)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-02-18 09:35:14 UTC (rev 180262)
@@ -1,3 +1,10 @@
+2015-02-18  Csaba Osztrogonác  <[email protected]>
+
+        URTBF after r180258 to fix Windows build.
+
+        * runtime/MathCommon.cpp:
+        (JSC::mathPowInternal):
+
 2015-02-18  Joseph Pecoraro  <[email protected]>
 
         REGRESSION(r180235): It broke the !ENABLE(PROMISES) build

Modified: trunk/Source/_javascript_Core/runtime/MathCommon.cpp (180261 => 180262)


--- trunk/Source/_javascript_Core/runtime/MathCommon.cpp	2015-02-18 09:00:12 UTC (rev 180261)
+++ trunk/Source/_javascript_Core/runtime/MathCommon.cpp	2015-02-18 09:35:14 UTC (rev 180262)
@@ -406,7 +406,7 @@
 
 ALWAYS_INLINE double mathPowInternal(double x, double y)
 {
-    return std::pow(x, y);
+    return pow(x, y);
 }
 
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to