Skip to content

Commit a46d987

Browse files
committed
What about now
1 parent 1a0a703 commit a46d987

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/_CollectionsUtilities/Array+WithContiguousStorage Compatibility.swift renamed to Sources/DequeModule/Array+WithContiguousStorage Compatibility.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ extension Array {
1717
@inlinable
1818
internal static func _isWCSIABroken() -> Bool {
1919
print("Hi there")
20-
20+
2121
#if _runtime(_ObjC)
2222
guard _isBridgedVerbatimToObjectiveC(Element.self) else {
2323
// SR-14663 only triggers on array values that are verbatim bridged
@@ -65,7 +65,7 @@ extension Sequence {
6565
// An adjusted version of the standard `withContiguousStorageIfAvailable`
6666
// method that works around https://bugs.swift.org/browse/SR-14663.
6767
@inlinable @inline(__always)
68-
public func _withContiguousStorageIfAvailable_SR14663<R>(
68+
internal func _withContiguousStorageIfAvailable_SR14663<R>(
6969
_ body: (UnsafeBufferPointer<Element>) throws -> R
7070
) rethrows -> R? {
7171
if Self.self == Array<Element>.self && Array<Element>._isWCSIABroken() {

0 commit comments

Comments
 (0)