authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2017-09-28 09:43:40-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2017-09-28 09:43:40-04:00
logfb365e39528eca572f099ee1f15f6e1258378ac8
tree730ca6f74b8b4dfe1dfcf54737519215ef63ea08
parent0cfeefbf158e91922e367113c438c331d75ac1b4

fix build on mingw


1 files changed, 1 insertions(+), 1 deletions(-)

src/tokenizer.cpp+1-1
......@@ -344,7 +344,7 @@ static void end_float_token(Tokenize *t) {
344344 const uint64_t shift = 112 - significand_magnitude_in_bin;
345345 const uint64_t exp_shift = 48;
346346 // Mask the sign bit to 0 since always non-negative lex
347 const uint64_t exp_mask = 0xfffful << exp_shift;
347 const uint64_t exp_mask = 0xffffull << exp_shift;
348348
349349 if (shift >= 64) {
350350 f_bits.repr[0] = 0;