Changeset 110657 in webkit for trunk/Source/JavaScriptCore/wtf/dtoa.h
- Timestamp:
- Mar 13, 2012, 7:12:25 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/wtf/dtoa.h
r107625 r110657 37 37 38 38 enum AllowTrailingJunkTag { DisallowTrailingJunk = 0, AllowTrailingJunk }; 39 enum AllowTrailingSpacesTag { DisallowTrailingSpaces = 0, AllowTrailingSpaces }; 39 40 40 41 // s00: input string. Must not be 0 and must be terminated by 0. 41 42 // se: *se will have the last consumed character position + 1. 42 template<AllowTrailingJunkTag allowTrailingJunk >43 template<AllowTrailingJunkTag allowTrailingJunk, AllowTrailingSpacesTag allowTrailingSpaces> 43 44 double strtod(const char* s00, char** se); 44 45
Note:
See TracChangeset
for help on using the changeset viewer.