Changeset 16164 in webkit for trunk/JavaScriptCore/wtf/MathExtras.h
- Timestamp:
- Aug 31, 2006, 3:59:26 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/MathExtras.h
r15774 r16164 45 45 inline float nextafterf(float x, float y) { return x > y ? x - FLT_EPSILON : x + FLT_EPSILON; } 46 46 47 inline double copysign(double x, double y) { return _copysign(x, y); } 48 inline int isfinite(double x) { return _finite(x); } 49 47 50 #if COMPILER(MSVC) 48 51
Note:
See TracChangeset
for help on using the changeset viewer.