@@ -569,7 +569,7 @@ extension _ArrayBuffer {
569569
570570 // Superseded by the typed-throws version of this function, but retained
571571 // for ABI reasons.
572- @inlinable
572+ @usableFromInline
573573 @_silgen_name ( " $ss12_ArrayBufferV010withUnsafeB7Pointeryqd__qd__SRyxGKXEKlF " )
574574 internal func __abi_withUnsafeBufferPointer< R> (
575575 _ body: ( UnsafeBufferPointer < Element > ) throws -> R
@@ -585,7 +585,6 @@ extension _ArrayBuffer {
585585 /// Call `body(p)`, where `p` is an `UnsafeBufferPointer` over the
586586 /// underlying contiguous storage. If no such storage exists, it is
587587 /// created on-demand.
588- @inlinable
589588 @_alwaysEmitIntoClient
590589 internal func withUnsafeBufferPointer< R, E> (
591590 _ body: ( UnsafeBufferPointer < Element > ) throws ( E ) -> R
@@ -600,7 +599,7 @@ extension _ArrayBuffer {
600599
601600 // Superseded by the typed-throws version of this function, but retained
602601 // for ABI reasons.
603- @inlinable
602+ @usableFromInline
604603 @_silgen_name ( " $ss12_ArrayBufferV017withUnsafeMutableB7Pointeryqd__qd__SryxGKXEKlF " )
605604 internal mutating func __abi_withUnsafeMutableBufferPointer< R> (
606605 _ body: ( UnsafeMutableBufferPointer < Element > ) throws -> R
@@ -612,7 +611,6 @@ extension _ArrayBuffer {
612611 /// over the underlying contiguous storage.
613612 ///
614613 /// - Precondition: Such contiguous storage exists or the buffer is empty.
615- @inlinable
616614 @_alwaysEmitIntoClient
617615 internal mutating func withUnsafeMutableBufferPointer< R, E> (
618616 _ body: ( UnsafeMutableBufferPointer < Element > ) throws ( E ) -> R
0 commit comments