Skip to content

Commit 2bbac42

Browse files
committed
Remove inaccurate comments
1 parent a53bfb6 commit 2bbac42

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

stdlib/public/core/Mirror.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ extension String {
547547
///
548548
/// print(String(describing: p))
549549
/// // Prints "(21, 30)"
550-
@inlinable // FIXME(sil-serialize-all)
550+
@inlinable
551551
public init<Subject: CustomStringConvertible>(describing instance: Subject) {
552552
self = instance.description
553553
}
@@ -591,7 +591,7 @@ extension String {
591591
///
592592
/// print(String(describing: p))
593593
/// // Prints "(21, 30)"
594-
@inlinable // FIXME(sil-serialize-all)
594+
@inlinable
595595
public init<Subject: TextOutputStreamable>(describing instance: Subject) {
596596
self.init()
597597
instance.write(to: &self)
@@ -636,7 +636,7 @@ extension String {
636636
///
637637
/// print(String(describing: p))
638638
/// // Prints "(21, 30)"
639-
@inlinable // FIXME(sil-serialize-all)
639+
@inlinable
640640
public init<Subject>(describing instance: Subject)
641641
where Subject: CustomStringConvertible & TextOutputStreamable
642642
{

stdlib/public/core/StringGuts.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -919,7 +919,7 @@ extension _StringGuts {
919919
reserveCapacitySlow(capacity)
920920
}
921921

922-
@usableFromInline // @testable
922+
@usableFromInline
923923
mutating func reserveCapacitySlow(_ capacity: Int) {
924924
if _fastPath(_isUniqueNative()) {
925925
if _fastPath(_object.nativeRawStorage.capacity >= capacity) {
@@ -1001,7 +1001,7 @@ extension _StringGuts {
10011001
_appendSlow(other)
10021002
}
10031003

1004-
@usableFromInline // @testable
1004+
@usableFromInline
10051005
internal
10061006
mutating func _appendSlow(_ other: _StringGuts) {
10071007
if _slowPath(other._isOpaque) {

0 commit comments

Comments
 (0)