diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-03-29 12:20:08 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-03-29 12:20:08 (GMT) |
commit | fef047766e3a72d50ddd344a2e66606031ba7775 (patch) | |
tree | eb2b43aa71f40a7d710a14ddfa4b367c24cb7750 /generic/tclStrToD.c | |
parent | 726d7bd5667d4baae431f0afae59541d55df757f (diff) | |
parent | 4c8c9f526780b8741580cf273b449f2e46d3cd9d (diff) | |
download | tcl-fef047766e3a72d50ddd344a2e66606031ba7775.zip tcl-fef047766e3a72d50ddd344a2e66606031ba7775.tar.gz tcl-fef047766e3a72d50ddd344a2e66606031ba7775.tar.bz2 |
Merge trunk
Diffstat (limited to 'generic/tclStrToD.c')
-rw-r--r-- | generic/tclStrToD.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclStrToD.c b/generic/tclStrToD.c index 39d6b7c..38f29ca 100644 --- a/generic/tclStrToD.c +++ b/generic/tclStrToD.c @@ -3742,7 +3742,7 @@ ShorteningBignumConversion( --s5; /* - * IDEA: It might possibly be a win to fall back to int64 + * IDEA: It might possibly be a win to fall back to int64_t * arithmetic here if S < 2**64/10. But it's a win only for * a fairly narrow range of magnitudes so perhaps not worth * bothering. We already know that we shorten the @@ -3907,7 +3907,7 @@ StrictBignumConversion( * As with the shortening bignum conversion, it's possible at this * point that we will have reduced the denominator to less than * 2**64/10, at which point it would be possible to fall back to - * to int64 arithmetic. But the potential payoff is tremendously + * to int64_t arithmetic. But the potential payoff is tremendously * less - unless we're working in F format - because we know that * three groups of digits will always suffice for %#.17e, the * longest format that doesn't introduce empty precision. |