Skip to content

Commit d6e83c4

Browse files
authored
Update EmptyView (#414)
1 parent e458e15 commit d6e83c4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Sources/OpenSwiftUICore/View/EmptyView.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
//
22
// EmptyView.swift
3-
// OpenSwiftUI
3+
// OpenSwiftUICore
44
//
5-
// Audited for iOS 15.5
5+
// Audited for 6.5.4
66
// Status: Complete
77

88
/// A view that doesn't contain any content.
@@ -32,16 +32,16 @@ public struct EmptyView: PrimitiveView {
3232
@inlinable
3333
public init() {}
3434

35-
public static func _makeView(view: _GraphValue<EmptyView>, inputs: _ViewInputs) -> _ViewOutputs {
35+
nonisolated public static func _makeView(view: _GraphValue<EmptyView>, inputs: _ViewInputs) -> _ViewOutputs {
3636
_ViewOutputs()
3737
}
3838

39-
public static func _makeViewList(view: _GraphValue<EmptyView>, inputs: _ViewListInputs) -> _ViewListOutputs {
39+
nonisolated public static func _makeViewList(view: _GraphValue<EmptyView>, inputs: _ViewListInputs) -> _ViewListOutputs {
4040
.emptyViewList(inputs: inputs)
4141
}
4242

4343
@available(OpenSwiftUI_v2_0, *)
44-
public static func _viewListCount(inputs: _ViewListCountInputs) -> Int? {
44+
nonisolated public static func _viewListCount(inputs: _ViewListCountInputs) -> Int? {
4545
0
4646
}
4747
}

0 commit comments

Comments
 (0)