Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions stdlib/public/core/Runtime.swift.gyb
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ internal func _float${bits}ToStringImpl(
_ buffer: UnsafeMutablePointer<UTF8.CodeUnit>,
_ bufferLength: UInt, _ value: Float${bits},
_ debug: Bool
) -> UInt
) -> UInt64

internal func _float${bits}ToString(
_ value: Float${bits}, debug: Bool
Expand All @@ -185,7 +185,7 @@ internal func _int64ToStringImpl(
_ buffer: UnsafeMutablePointer<UTF8.CodeUnit>,
_ bufferLength: UInt, _ value: Int64,
_ radix: Int64, _ uppercase: Bool
) -> UInt
) -> UInt64

internal func _int64ToString(
_ value: Int64, radix: Int64 = 10, uppercase: Bool = false
Expand Down Expand Up @@ -213,7 +213,7 @@ internal func _int64ToString(
internal func _uint64ToStringImpl(
_ buffer: UnsafeMutablePointer<UTF8.CodeUnit>,
_ bufferLength: UInt, _ value: UInt64, _ radix: Int64, _ uppercase: Bool
) -> UInt
) -> UInt64

public // @testable
func _uint64ToString(
Expand Down