Changeset 15774 in webkit for trunk/JavaScriptCore/wtf/MathExtras.h
- Timestamp:
- Aug 3, 2006, 12:18:11 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/MathExtras.h
r15156 r15774 42 42 inline bool signbit(double num) { return _copysign(1.0, num) < 0; } 43 43 44 inline double nextafter(double x, double y) { return _nextafter(x, y); } 45 inline float nextafterf(float x, float y) { return x > y ? x - FLT_EPSILON : x + FLT_EPSILON; } 46 44 47 #if COMPILER(MSVC) 45 48
Note:
See TracChangeset
for help on using the changeset viewer.