Update Deps (#5454)

This commit is contained in:
Brian Kassouf
2018-10-03 09:55:26 -07:00
committed by GitHub
parent 1e1a31e8d8
commit f2233d7a1c
1141 changed files with 135505 additions and 41677 deletions

View File

@@ -145,9 +145,7 @@ non_decimal_loop:
}
// too many decimal places
return iter.readFloat32SlowPath()
case invalidCharForNumber:
fallthrough
case dotInNumber:
case invalidCharForNumber, dotInNumber:
return iter.readFloat32SlowPath()
}
decimalPlaces++
@@ -286,9 +284,7 @@ non_decimal_loop:
}
// too many decimal places
return iter.readFloat64SlowPath()
case invalidCharForNumber:
fallthrough
case dotInNumber:
case invalidCharForNumber, dotInNumber:
return iter.readFloat64SlowPath()
}
decimalPlaces++