Commit 64e724b6 authored by hausmann@webkit.org's avatar hausmann@webkit.org

Unreviewed RVCT build fix.

Similar to r54391, don't import the cmath functions from std:: for RVCT.

* wtf/MathExtras.h:

git-svn-id: svn://svn.chromium.org/blink/trunk@54476 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 0c79dbfd
2010-02-08 Simon Hausmann <simon.hausmann@nokia.com>
Unreviewed RVCT build fix.
Similar to r54391, don't import the cmath functions from std:: for RVCT.
* wtf/MathExtras.h:
2010-02-05 Gavin Barraclough <barraclough@apple.com> 2010-02-05 Gavin Barraclough <barraclough@apple.com>
Reviewed by Geoff Garen. Reviewed by Geoff Garen.
......
...@@ -186,7 +186,7 @@ inline float deg2turn(float d) { return d / 360.0f; } ...@@ -186,7 +186,7 @@ inline float deg2turn(float d) { return d / 360.0f; }
inline float rad2grad(float r) { return r * 200.0f / piFloat; } inline float rad2grad(float r) { return r * 200.0f / piFloat; }
inline float grad2rad(float g) { return g * piFloat / 200.0f; } inline float grad2rad(float g) { return g * piFloat / 200.0f; }
#if !COMPILER(MSVC) #if !COMPILER(MSVC) && !COMPILER(RVCT)
using std::isfinite; using std::isfinite;
using std::isinf; using std::isinf;
using std::isnan; using std::isnan;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment