diff options
| author | dgp@users.sourceforge.net <dgp> | 2012-06-05 15:41:55 (GMT) | 
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2012-06-05 15:41:55 (GMT) | 
| commit | 2d71d7b27fd39e63d06bcd9b0103ec40db458af5 (patch) | |
| tree | f6bc172712af3fdfa0da8dd5825793a1cf386da2 | |
| parent | fe52f24d0e2be098ac0be0b882361db35e146812 (diff) | |
| parent | 92329aa3e4767495bfcc672d98bc10628860f83f (diff) | |
| download | tcl-2d71d7b27fd39e63d06bcd9b0103ec40db458af5.zip tcl-2d71d7b27fd39e63d06bcd9b0103ec40db458af5.tar.gz tcl-2d71d7b27fd39e63d06bcd9b0103ec40db458af5.tar.bz2  | |
Remove unused variable mantDIGIT.
| -rwxr-xr-x | generic/tclStrToD.c | 3 | 
1 files changed, 0 insertions, 3 deletions
diff --git a/generic/tclStrToD.c b/generic/tclStrToD.c index 332cfca..2d534a68 100755 --- a/generic/tclStrToD.c +++ b/generic/tclStrToD.c @@ -192,8 +192,6 @@ static int maxDigits;		/* The maximum number of digits to the left of  				 * the decimal point of a double. */  static int minDigits;		/* The maximum number of digits to the right  				 * of the decimal point in a double. */ -static int mantDIGIT;		/* Number of mp_digit's needed to hold the -				 * significand of a double. */  static const double pow_10_2_n[] = {	/* Inexact higher powers of ten. */      1.0,      100.0, @@ -4425,7 +4423,6 @@ TclInitDoubleConversion(void)  	    + 0.5 * log(10.)) / log(10.));      minDigits = (int) floor((DBL_MIN_EXP - DBL_MANT_DIG)  	    * log((double) FLT_RADIX) / log(10.)); -    mantDIGIT = (mantBits + DIGIT_BIT-1) / DIGIT_BIT;      log10_DIGIT_MAX = (int) floor(DIGIT_BIT * log(2.) / log(10.));      /*  | 
