File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
test/api-digester/Outputs Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -284,6 +284,7 @@ extension UInt {
284
284
/// A wrapper around a C `va_list` pointer.
285
285
#if arch(arm64) && !(os(macOS) || os(iOS) || os(tvOS) || os(watchOS) || os(visionOS) || os(Windows))
286
286
@frozen
287
+ @unsafe
287
288
public struct CVaListPointer {
288
289
@usableFromInline // unsafe-performance
289
290
internal var _value : ( __stack: UnsafeMutablePointer < Int > ? ,
@@ -317,6 +318,7 @@ extension CVaListPointer: CustomDebugStringConvertible {
317
318
#else
318
319
319
320
@frozen
321
+ @unsafe
320
322
public struct CVaListPointer {
321
323
@usableFromInline // unsafe-performance
322
324
internal var _value : UnsafeMutableRawPointer
Original file line number Diff line number Diff line change @@ -364,6 +364,7 @@ Func ContiguousArray.withUnsafeMutableBufferPointer(_:) is now without @rethrows
364
364
// Adoption of @unsafe
365
365
Func unsafeBitCast(_:to:) is now with @unsafe
366
366
Func unsafeDowncast(_:to:) is now with @unsafe
367
+ Struct CVaListPointer is now with @unsafe
367
368
Struct OpaquePointer is now with @unsafe
368
369
Struct Unmanaged is now with @unsafe
369
370
Struct UnsafeBufferPointer is now with @unsafe
You can’t perform that action at this time.
0 commit comments