Skip to content

Commit

Permalink
fix bad merge.
Browse files Browse the repository at this point in the history
  • Loading branch information
floitsch committed Jan 12, 2014
1 parent dc25ade commit ea2aa13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/double-conversion.cc
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@ double StringToDoubleConverter::StringToIeee(
&tail_pointer);
if (tail_pointer != NULL) {
if (allow_trailing_spaces) AdvanceToNonspace(&tail_pointer, end);
*processed_characters_count = static_cast<int>(current - input);
*processed_characters_count = static_cast<int>(tail_pointer - input);
}
return result;
}
Expand Down

0 comments on commit ea2aa13

Please sign in to comment.