Skip to content

Commit da65626

Browse files
authored
Merge pull request #73947 from glessard/rdar128709914
2 parents d0ed6f6 + 4fc82f8 commit da65626

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

stdlib/public/core/UnsafeRawPointer.swift

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -510,9 +510,6 @@ extension UnsafeRawPointer {
510510
/// with the value in the range of memory referenced by this pointer.
511511
@inlinable
512512
@_alwaysEmitIntoClient
513-
@available(swift, deprecated: 6, message:
514-
"Use the BitwiseCopyable-constrained overload"
515-
)
516513
public func loadUnaligned<T>(
517514
fromByteOffset offset: Int = 0,
518515
as type: T.Type
@@ -1347,9 +1344,6 @@ extension UnsafeMutableRawPointer {
13471344
/// with the value in the range of memory referenced by this pointer.
13481345
@inlinable
13491346
@_alwaysEmitIntoClient
1350-
@available(swift, deprecated: 6, message:
1351-
"Use the BitwiseCopyable-constrained overload"
1352-
)
13531347
public func loadUnaligned<T>(
13541348
fromByteOffset offset: Int = 0,
13551349
as type: T.Type
@@ -1456,9 +1450,6 @@ extension UnsafeMutableRawPointer {
14561450
@_alwaysEmitIntoClient
14571451
// This custom silgen name is chosen to not interfere with the old ABI
14581452
@_silgen_name("_swift_se0349_UnsafeMutableRawPointer_storeBytes")
1459-
@available(swift, deprecated: 6, message:
1460-
"Use the BitwiseCopyable-constrained overload"
1461-
)
14621453
public func storeBytes<T>(
14631454
of value: T, toByteOffset offset: Int = 0, as type: T.Type
14641455
) {

0 commit comments

Comments
 (0)