mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* expand tabs.
This commit is contained in:
parent
ba94404f70
commit
ff5b149435
1 changed files with 3 additions and 3 deletions
|
@ -370,12 +370,12 @@ load_mantissa(double d, const char *buf, long len)
|
||||||
do {
|
do {
|
||||||
m = 0;
|
m = 0;
|
||||||
switch (len) {
|
switch (len) {
|
||||||
default: m = *buf++ & 0xff; /* fall through */
|
default: m = *buf++ & 0xff; /* fall through */
|
||||||
#if MANT_BITS > 24
|
#if MANT_BITS > 24
|
||||||
case 3: m = (m << 8) | (*buf++ & 0xff); /* fall through */
|
case 3: m = (m << 8) | (*buf++ & 0xff); /* fall through */
|
||||||
#endif
|
#endif
|
||||||
#if MANT_BITS > 16
|
#if MANT_BITS > 16
|
||||||
case 2: m = (m << 8) | (*buf++ & 0xff); /* fall through */
|
case 2: m = (m << 8) | (*buf++ & 0xff); /* fall through */
|
||||||
#endif
|
#endif
|
||||||
#if MANT_BITS > 8
|
#if MANT_BITS > 8
|
||||||
case 1: m = (m << 8) | (*buf++ & 0xff);
|
case 1: m = (m << 8) | (*buf++ & 0xff);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue