File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
stdlib/public/Synchronization Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -14,13 +14,12 @@ import Builtin
14
14
15
15
@available ( SwiftStdlib 6 . 0 , * )
16
16
@frozen
17
- @usableFromInline
18
17
@_rawLayout ( like: Value, movesAsLike)
19
- internal struct _Cell < Value: ~ Copyable> : ~ Copyable {
18
+ public struct _Cell < Value: ~ Copyable> : ~ Copyable {
20
19
@available ( SwiftStdlib 6 . 0 , * )
21
20
@_alwaysEmitIntoClient
22
21
@_transparent
23
- internal var _address : UnsafeMutablePointer < Value > {
22
+ public var _address : UnsafeMutablePointer < Value > {
24
23
unsafe UnsafeMutablePointer< Value > ( _rawAddress)
25
24
}
26
25
@@ -34,7 +33,7 @@ internal struct _Cell<Value: ~Copyable>: ~Copyable {
34
33
@available ( SwiftStdlib 6 . 0 , * )
35
34
@_alwaysEmitIntoClient
36
35
@_transparent
37
- internal init ( _ initialValue: consuming Value ) {
36
+ public init ( _ initialValue: consuming Value ) {
38
37
unsafe _address. initialize ( to: initialValue)
39
38
}
40
39
You can’t perform that action at this time.
0 commit comments