Changeset 94519 in webkit for trunk/Source/JavaScriptCore/wtf
- Timestamp:
- Sep 5, 2011, 1:49:57 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/wtf/dtoa/double-conversion.cc
r94452 r94519 607 607 int insignificant_digits = 0; 608 608 bool nonzero_digit_dropped = false; 609 bool fractional_part = false;610 611 609 bool sign = false; 612 610 … … 750 748 } 751 749 } 752 753 // We don't emit a '.', but adjust the exponent instead. 754 fractional_part = true; 755 750 756 751 // There is a fractional part. 757 752 while (*current >= '0' && *current <= '9') {
Note:
See TracChangeset
for help on using the changeset viewer.