| Index: src/conversions-inl.h
|
| ===================================================================
|
| --- src/conversions-inl.h (revision 8778)
|
| +++ src/conversions-inl.h (working copy)
|
| @@ -454,7 +454,6 @@
|
| int significant_digits = 0;
|
| int insignificant_digits = 0;
|
| bool nonzero_digit_dropped = false;
|
| - bool fractional_part = false;
|
|
|
| bool negative = false;
|
|
|
| @@ -557,10 +556,8 @@
|
| }
|
| }
|
|
|
| - // We don't emit a '.', but adjust the exponent instead.
|
| - fractional_part = true;
|
| -
|
| - // There is a fractional part.
|
| + // There is a fractional part. We don't emit a '.', but adjust the exponent
|
| + // instead.
|
| while (*current >= '0' && *current <= '9') {
|
| if (significant_digits < kMaxSignificantDigits) {
|
| ASSERT(buffer_pos < kBufferSize);
|
|
|