1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* expand tabs.

This commit is contained in:
git 2019-07-14 14:04:34 +09:00
parent ba94404f70
commit ff5b149435

View file

@ -370,12 +370,12 @@ load_mantissa(double d, const char *buf, long len)
do {
m = 0;
switch (len) {
default: m = *buf++ & 0xff; /* fall through */
default: m = *buf++ & 0xff; /* fall through */
#if MANT_BITS > 24
case 3: m = (m << 8) | (*buf++ & 0xff); /* fall through */
case 3: m = (m << 8) | (*buf++ & 0xff); /* fall through */
#endif
#if MANT_BITS > 16
case 2: m = (m << 8) | (*buf++ & 0xff); /* fall through */
case 2: m = (m << 8) | (*buf++ & 0xff); /* fall through */
#endif
#if MANT_BITS > 8
case 1: m = (m << 8) | (*buf++ & 0xff);