@@ -71,13 +71,13 @@ internal var _emptyArrayStorage : __EmptyArrayStorage {
71
71
}
72
72
73
73
// The class that implements the storage for a ContiguousArray<Element>
74
- @_fixed_layout // FIXME(sil-serialize-all)
74
+ @_fixed_layout
75
75
@usableFromInline
76
76
internal final class _ContiguousArrayStorage <
77
77
Element
78
78
> : __ContiguousArrayStorageBase {
79
79
80
- @inlinable // FIXME(sil-serialize-all)
80
+ @inlinable
81
81
deinit {
82
82
_elementPointer. deinitialize ( count: countAndCapacity. count)
83
83
_fixLifetime ( self )
@@ -654,7 +654,7 @@ internal struct _UnsafePartiallyInitializedContiguousArrayBuffer<Element> {
654
654
655
655
/// Initialize the buffer with an initial size of `initialCapacity`
656
656
/// elements.
657
- @inlinable // FIXME(sil-serialize-all)
657
+ @inlinable
658
658
@inline ( __always) // For performance reasons.
659
659
internal init ( initialCapacity: Int ) {
660
660
if initialCapacity == 0 {
@@ -670,7 +670,7 @@ internal struct _UnsafePartiallyInitializedContiguousArrayBuffer<Element> {
670
670
}
671
671
672
672
/// Add an element to the buffer, reallocating if necessary.
673
- @inlinable // FIXME(sil-serialize-all)
673
+ @inlinable
674
674
@inline ( __always) // For performance reasons.
675
675
internal mutating func add( _ element: Element ) {
676
676
if remainingCapacity == 0 {
@@ -693,7 +693,7 @@ internal struct _UnsafePartiallyInitializedContiguousArrayBuffer<Element> {
693
693
}
694
694
695
695
/// Add an element to the buffer, which must have remaining capacity.
696
- @inlinable // FIXME(sil-serialize-all)
696
+ @inlinable
697
697
@inline ( __always) // For performance reasons.
698
698
internal mutating func addWithExistingCapacity( _ element: Element ) {
699
699
_sanityCheck ( remainingCapacity > 0 ,
@@ -709,7 +709,7 @@ internal struct _UnsafePartiallyInitializedContiguousArrayBuffer<Element> {
709
709
///
710
710
/// Returns the fully-initialized buffer. `self` is reset to contain an
711
711
/// empty buffer and cannot be used afterward.
712
- @inlinable // FIXME(sil-serialize-all)
712
+ @inlinable
713
713
@inline ( __always) // For performance reasons.
714
714
internal mutating func finish( ) -> ContiguousArray < Element > {
715
715
// Adjust the initialized count of the buffer.
@@ -724,7 +724,7 @@ internal struct _UnsafePartiallyInitializedContiguousArrayBuffer<Element> {
724
724
///
725
725
/// Returns the fully-initialized buffer. `self` is reset to contain an
726
726
/// empty buffer and cannot be used afterward.
727
- @inlinable // FIXME(sil-serialize-all)
727
+ @inlinable
728
728
@inline ( __always) // For performance reasons.
729
729
internal mutating func finishWithOriginalCount( ) -> ContiguousArray < Element > {
730
730
_sanityCheck ( remainingCapacity == result. capacity - result. count,
0 commit comments