Skip to content

Commit 9bc8fac

Browse files
committed
fix
1 parent 29e895e commit 9bc8fac

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Sources/ComposableArchitecture/Internal/KeyPath+Sendable.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ extension _AppendKeyPath {
3434
#if compiler(>=6)
3535
unsafeBitCast(self, to: _SendableAnyKeyPath.self)
3636
#else
37-
keyPath
37+
self
3838
#endif
3939
}
4040

@@ -44,7 +44,7 @@ extension _AppendKeyPath {
4444
#if compiler(>=6)
4545
unsafeBitCast(self, to: _SendablePartialKeyPath<Root>.self)
4646
#else
47-
keyPath
47+
self
4848
#endif
4949
}
5050

@@ -54,7 +54,7 @@ extension _AppendKeyPath {
5454
#if compiler(>=6)
5555
unsafeBitCast(self, to: _SendableKeyPath<Root, Value>.self)
5656
#else
57-
keyPath
57+
self
5858
#endif
5959
}
6060

@@ -64,7 +64,7 @@ extension _AppendKeyPath {
6464
#if compiler(>=6)
6565
unsafeBitCast(self, to: _SendableWritableKeyPath<Root, Value>.self)
6666
#else
67-
keyPath
67+
self
6868
#endif
6969
}
7070

@@ -74,7 +74,7 @@ extension _AppendKeyPath {
7474
#if compiler(>=6)
7575
unsafeBitCast(self, to: _SendableReferenceWritableKeyPath<Root, Value>.self)
7676
#else
77-
keyPath
77+
self
7878
#endif
7979
}
8080

@@ -84,7 +84,7 @@ extension _AppendKeyPath {
8484
#if compiler(>=6)
8585
unsafeBitCast(self, to: _SendableCaseKeyPath<Root, Value>.self)
8686
#else
87-
keyPath
87+
self
8888
#endif
8989
}
9090
}

0 commit comments

Comments
 (0)