File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -547,7 +547,7 @@ extension String {
547
547
///
548
548
/// print(String(describing: p))
549
549
/// // Prints "(21, 30)"
550
- @inlinable // FIXME(sil-serialize-all)
550
+ @inlinable
551
551
public init < Subject: CustomStringConvertible > ( describing instance: Subject ) {
552
552
self = instance. description
553
553
}
@@ -591,7 +591,7 @@ extension String {
591
591
///
592
592
/// print(String(describing: p))
593
593
/// // Prints "(21, 30)"
594
- @inlinable // FIXME(sil-serialize-all)
594
+ @inlinable
595
595
public init < Subject: TextOutputStreamable > ( describing instance: Subject ) {
596
596
self . init ( )
597
597
instance. write ( to: & self )
@@ -636,7 +636,7 @@ extension String {
636
636
///
637
637
/// print(String(describing: p))
638
638
/// // Prints "(21, 30)"
639
- @inlinable // FIXME(sil-serialize-all)
639
+ @inlinable
640
640
public init < Subject> ( describing instance: Subject )
641
641
where Subject: CustomStringConvertible & TextOutputStreamable
642
642
{
Original file line number Diff line number Diff line change @@ -919,7 +919,7 @@ extension _StringGuts {
919
919
reserveCapacitySlow ( capacity)
920
920
}
921
921
922
- @usableFromInline // @testable
922
+ @usableFromInline
923
923
mutating func reserveCapacitySlow( _ capacity: Int ) {
924
924
if _fastPath ( _isUniqueNative ( ) ) {
925
925
if _fastPath ( _object. nativeRawStorage. capacity >= capacity) {
@@ -1001,7 +1001,7 @@ extension _StringGuts {
1001
1001
_appendSlow ( other)
1002
1002
}
1003
1003
1004
- @usableFromInline // @testable
1004
+ @usableFromInline
1005
1005
internal
1006
1006
mutating func _appendSlow( _ other: _StringGuts ) {
1007
1007
if _slowPath ( other. _isOpaque) {
You can’t perform that action at this time.
0 commit comments