Changeset 54655 in webkit for trunk/JavaScriptCore
- Timestamp:
- Feb 11, 2010, 8:03:40 AM (15 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r54649 r54655 1 2010-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 1 12 2010-02-08 Maciej Stachowiak <[email protected]> 2 13 -
trunk/JavaScriptCore/wtf/MathExtras.h
r54476 r54655 187 187 inline float grad2rad(float g) { return g * piFloat / 200.0f; } 188 188 189 #if !COMPILER(MSVC) && !COMPILER(RVCT) 189 #if !COMPILER(MSVC) && !COMPILER(RVCT) && !OS(ANDROID) 190 190 using std::isfinite; 191 191 using std::isinf;
Note:
See TracChangeset
for help on using the changeset viewer.