Changeset 35203 in webkit for trunk/JavaScriptCore/kjs/JSValue.h
- Timestamp:
- Jul 16, 2008, 3:47:32 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/JSValue.h
r35027 r35203 26 26 #include "CallData.h" 27 27 #include "ConstructData.h" 28 #include "ExecState.h"29 28 #include "JSImmediate.h" 30 29 #include "ustring.h" … … 112 111 // These are identical logic to above, and faster than jsNumber(number)->toInt32(exec) 113 112 static int32_t toInt32(double); 114 static int32_t toUInt32(double);113 static uint32_t toUInt32(double); 115 114 116 115 // Floating point conversions. … … 219 218 } 220 219 221 inline int32_t JSValue::toUInt32(double val)220 inline uint32_t JSValue::toUInt32(double val) 222 221 { 223 222 if (!(val >= 0.0 && val < 4294967296.0)) {
Note:
See TracChangeset
for help on using the changeset viewer.