Skip to content

Commit 9f73b93

Browse files
authored
Fix subscript visibility (#341)
1 parent cc1c14f commit 9f73b93

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Sources/WasmKit/Execution/Instances.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ package struct EntityHandle<T>: Equatable, Hashable {
5151
self.pointer = pointer
5252
}
5353

54-
subscript<R>(dynamicMember keyPath: KeyPath<T, R>) -> R {
54+
package subscript<R>(dynamicMember keyPath: KeyPath<T, R>) -> R {
5555
pointer.pointee[keyPath: keyPath]
5656
}
5757

0 commit comments

Comments
 (0)