Skip to content

Commit e824967

Browse files
committed
Un-inline streaming writes
1 parent 857e4f6 commit e824967

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

stdlib/public/core/OutputStream.swift

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,6 @@ extension String : TextOutputStream {
557557
/// Appends the given string to this string.
558558
///
559559
/// - Parameter other: A string to append.
560-
@inlinable // FIXME(sil-serialize-all)
561560
public mutating func write(_ other: String) {
562561
self += other
563562
}
@@ -571,7 +570,6 @@ extension String : TextOutputStreamable {
571570
/// Writes the string into the given output stream.
572571
///
573572
/// - Parameter target: An output stream.
574-
@inlinable // FIXME(sil-serialize-all)
575573
public func write<Target : TextOutputStream>(to target: inout Target) {
576574
target.write(self)
577575
}
@@ -581,7 +579,6 @@ extension Character : TextOutputStreamable {
581579
/// Writes the character into the given output stream.
582580
///
583581
/// - Parameter target: An output stream.
584-
@inlinable // FIXME(sil-serialize-all)
585582
public func write<Target : TextOutputStream>(to target: inout Target) {
586583
target.write(String(self))
587584
}
@@ -592,7 +589,6 @@ extension Unicode.Scalar : TextOutputStreamable {
592589
/// output stream.
593590
///
594591
/// - Parameter target: An output stream.
595-
@inlinable // FIXME(sil-serialize-all)
596592
public func write<Target : TextOutputStream>(to target: inout Target) {
597593
target.write(String(Character(self)))
598594
}

0 commit comments

Comments
 (0)