@@ -99,7 +99,7 @@ extension Span where Element: ~Copyable {
99
99
public init (
100
100
_unsafeElements buffer: UnsafeBufferPointer < Element >
101
101
) {
102
- //FIXME: Workaround for https://github.com/swiftlang/swift/issues/77235
102
+ // FIXME: Workaround for https://github.com/swiftlang/swift/issues/77235
103
103
let baseAddress = UnsafeRawPointer ( buffer. baseAddress)
104
104
_precondition (
105
105
( ( Int ( bitPattern: baseAddress) &
@@ -221,7 +221,7 @@ extension Span where Element: BitwiseCopyable {
221
221
public init (
222
222
_unsafeBytes buffer: UnsafeRawBufferPointer
223
223
) {
224
- //FIXME: Workaround for https://github.com/swiftlang/swift/issues/77235
224
+ // FIXME: Workaround for https://github.com/swiftlang/swift/issues/77235
225
225
let baseAddress = buffer. baseAddress
226
226
_precondition (
227
227
( ( Int ( bitPattern: baseAddress) &
@@ -398,7 +398,7 @@ extension Span where Element: ~Copyable {
398
398
/// - Complexity: O(1)
399
399
@_alwaysEmitIntoClient
400
400
public subscript( _ position: Index ) -> Element {
401
- //FIXME: change to unsafeRawAddress when ready
401
+ // FIXME: change to unsafeRawAddress when ready
402
402
unsafeAddress {
403
403
_precondition ( indices. contains ( position) , " Index out of bounds " )
404
404
return _unsafeAddressOfElement ( unchecked: position)
@@ -417,7 +417,7 @@ extension Span where Element: ~Copyable {
417
417
@unsafe
418
418
@_alwaysEmitIntoClient
419
419
public subscript( unchecked position: Index ) -> Element {
420
- //FIXME: change to unsafeRawAddress when ready
420
+ // FIXME: change to unsafeRawAddress when ready
421
421
unsafeAddress {
422
422
_unsafeAddressOfElement ( unchecked: position)
423
423
}
0 commit comments