File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -557,7 +557,6 @@ extension String : TextOutputStream {
557
557
/// Appends the given string to this string.
558
558
///
559
559
/// - Parameter other: A string to append.
560
- @inlinable // FIXME(sil-serialize-all)
561
560
public mutating func write( _ other: String ) {
562
561
self += other
563
562
}
@@ -571,7 +570,6 @@ extension String : TextOutputStreamable {
571
570
/// Writes the string into the given output stream.
572
571
///
573
572
/// - Parameter target: An output stream.
574
- @inlinable // FIXME(sil-serialize-all)
575
573
public func write< Target : TextOutputStream > ( to target: inout Target ) {
576
574
target. write ( self )
577
575
}
@@ -581,7 +579,6 @@ extension Character : TextOutputStreamable {
581
579
/// Writes the character into the given output stream.
582
580
///
583
581
/// - Parameter target: An output stream.
584
- @inlinable // FIXME(sil-serialize-all)
585
582
public func write< Target : TextOutputStream > ( to target: inout Target ) {
586
583
target. write ( String ( self ) )
587
584
}
@@ -592,7 +589,6 @@ extension Unicode.Scalar : TextOutputStreamable {
592
589
/// output stream.
593
590
///
594
591
/// - Parameter target: An output stream.
595
- @inlinable // FIXME(sil-serialize-all)
596
592
public func write< Target : TextOutputStream > ( to target: inout Target ) {
597
593
target. write ( String ( Character ( self ) ) )
598
594
}
You can’t perform that action at this time.
0 commit comments