Changeset 54655 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Feb 11, 2010, 8:03:40 AM (15 years ago)
Author:
[email protected]
Message:

Guard cmath using declarations in MathExtras.h on Android
https://bugs.webkit.org/show_bug.cgi?id=34840

Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r54649 r54655  
     12010-02-11  Steve Block  <[email protected]>
     2
     3        Reviewed by Darin Adler.
     4
     5        Guard cmath using declarations in MathExtras.h on Android
     6        https://bugs.webkit.org/show_bug.cgi?id=34840
     7
     8        Android does not provide these functions.
     9
     10        * wtf/MathExtras.h:
     11
    1122010-02-08  Maciej Stachowiak  <[email protected]>
    213
  • trunk/JavaScriptCore/wtf/MathExtras.h

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