We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bf38bf commit a6fd1aaCopy full SHA for a6fd1aa
stdlib/public/core/FloatingPointToString.swift
@@ -789,7 +789,7 @@ internal func _Float64ToASCII(
789
// will only need 32-bit division in that case.)
790
791
let bulkFirstDigits = 7
792
- let bulkFirstDigitFactor = 1000000 // 10^(bulkFirstDigits - 1)
+ let bulkFirstDigitFactor: UInt32 = 1000000 // 10^(bulkFirstDigits - 1)
793
794
let powerOfTenExponent = _intervalContainingPowerOf10_Binary64(
795
p: -base10Exponent &+ bulkFirstDigits &- 1,
0 commit comments