Skip to content

Commit b761d8f

Browse files
committed
Another try at fixing the ABI change
1 parent 9635ef5 commit b761d8f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

stdlib/public/core/FloatingPointToString.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ internal func _Float16ToASCII(
442442
// Support Legacy ABI on top of new implementation
443443
@_silgen_name("swift_float32ToString")
444444
@usableFromInline
445-
private func _float32ToStringImpl(
445+
internal func _float32ToStringImpl(
446446
_ textBuffer: UnsafeMutablePointer<UTF8.CodeUnit>,
447447
_ bufferLength: UInt,
448448
_ value: Float32,
@@ -695,7 +695,7 @@ internal func _Float32ToASCII(
695695
// Support Legacy ABI on top of new implementation
696696
@_silgen_name("swift_float64ToString")
697697
@usableFromInline
698-
private func _float64ToStringImpl(
698+
internal func _float64ToStringImpl(
699699
_ textBuffer: UnsafeMutablePointer<UTF8.CodeUnit>,
700700
_ bufferLength: UInt,
701701
_ value: Float64,
@@ -1203,7 +1203,7 @@ internal func _Float64ToASCII(
12031203
// Support Legacy ABI on top of new implementation
12041204
@_silgen_name("swift_float80ToString")
12051205
@usableFromInline
1206-
private func _float80ToStringImpl(
1206+
internal func _float80ToStringImpl(
12071207
_ textBuffer: UnsafeMutablePointer<UTF8.CodeUnit>,
12081208
_ bufferLength: UInt,
12091209
_ value: Float80,

0 commit comments

Comments
 (0)