summaryrefslogtreecommitdiffstats
path: root/generic/tclStrToD.c
diff options
context:
space:
mode:
authornijtmans@users.sourceforge.net <jan.nijtmans>2011-08-15 08:44:50 (GMT)
committernijtmans@users.sourceforge.net <jan.nijtmans>2011-08-15 08:44:50 (GMT)
commite279f330ae0a185ff1266c266a30a7d7d768708c (patch)
treeecf34bbcff3051bb4ef9d706289d78268fd42763 /generic/tclStrToD.c
parentae4685f6aa69ad61889a9132d1025310cb8c8f74 (diff)
parenta0da276b06f6d146d70e03b98ce21b3339cb3796 (diff)
downloadtcl-e279f330ae0a185ff1266c266a30a7d7d768708c.zip
tcl-e279f330ae0a185ff1266c266a30a7d7d768708c.tar.gz
tcl-e279f330ae0a185ff1266c266a30a7d7d768708c.tar.bz2
[Bug 3388350] mingw64 compiler warnings
Diffstat (limited to 'generic/tclStrToD.c')
-rwxr-xr-xgeneric/tclStrToD.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclStrToD.c b/generic/tclStrToD.c
index 2db239e..aa78c51 100755
--- a/generic/tclStrToD.c
+++ b/generic/tclStrToD.c
@@ -3096,7 +3096,7 @@ ShouldBankerRoundUpPowD(mp_int* b,
/* 1 if the digit is odd, 0 if even */
{
int i;
- const static mp_digit topbit = (1<<(DIGIT_BIT-1));
+ static const mp_digit topbit = (1<<(DIGIT_BIT-1));
if (b->used < sd || (b->dp[sd-1] & topbit) == 0) {
return 0;
}