File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import SwiftShims
23
23
/// any live elements in the `deinit` of a subclass.
24
24
/// - Note: Subclasses must not have any stored properties; any storage
25
25
/// needed should be included in `Header`.
26
- public class ManagedBuffer < Header, Element> {
26
+ open class ManagedBuffer < Header, Element> {
27
27
28
28
/// Create a new instance of the most-derived class, calling
29
29
/// `factory` on the partially-constructed object to generate
Original file line number Diff line number Diff line change @@ -495,13 +495,15 @@ class _SwiftNativeNSSet {}
495
495
@objc @_swift_native_objc_runtime_base ( _SwiftNativeNSEnumeratorBase)
496
496
class _SwiftNativeNSEnumerator { }
497
497
498
+ // FIXME(ABI): move into the Foundation overlay and remove 'open'
498
499
@objc @_swift_native_objc_runtime_base ( _SwiftNativeNSDataBase)
499
- public class _SwiftNativeNSData {
500
+ open class _SwiftNativeNSData {
500
501
public init ( ) { }
501
502
}
502
503
504
+ // FIXME(ABI): move into the Foundation overlay and remove 'open'
503
505
@objc @_swift_native_objc_runtime_base ( _SwiftNativeNSCharacterSetBase)
504
- public class _SwiftNativeNSCharacterSet {
506
+ open class _SwiftNativeNSCharacterSet {
505
507
public init ( ) { }
506
508
}
507
509
You can’t perform that action at this time.
0 commit comments