Changeset 54722 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Feb 12, 2010, 5:48:54 AM (15 years ago)
Author:
Simon Hausmann
Message:

Don't import the cmath functions from std:: for WINSCW.

Patch by Janne Koskinen <[email protected]> on 2010-02-12
Reviewed by Simon Hausmann.

  • wtf/MathExtras.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r54717 r54722  
     12010-02-12  Janne Koskinen  <[email protected]>
     2
     3        Reviewed by Simon Hausmann.
     4
     5        Don't import the cmath functions from std:: for WINSCW.
     6
     7        * wtf/MathExtras.h:
     8
    192010-02-12  Kwang Yul Seo  <[email protected]>
    210
  • trunk/JavaScriptCore/wtf/MathExtras.h

    r54655 r54722  
    187187inline float grad2rad(float g) { return g * piFloat / 200.0f; }
    188188
    189 #if !COMPILER(MSVC) && !COMPILER(RVCT) && !OS(ANDROID)
     189#if !COMPILER(MSVC) && !COMPILER(RVCT) && !OS(ANDROID) && !COMPILER(WINSCW)
    190190using std::isfinite;
    191191using std::isinf;
Note: See TracChangeset for help on using the changeset viewer.