Skip to content

Commit 119d10f

Browse files
committed
Make __TestContentRecord.accessor non-optional to work around swiftlang/swift#86051
1 parent 17d3b87 commit 119d10f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/Testing/Discovery+Macro.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public typealias __TestContentRecordAccessor = @convention(c) (
3434
public typealias __TestContentRecord = (
3535
kind: UInt32,
3636
reserved1: UInt32,
37-
accessor: __TestContentRecordAccessor?,
37+
accessor: __TestContentRecordAccessor,
3838
context: UInt,
3939
reserved2: UInt
4040
)

0 commit comments

Comments
 (0)