Skip to content

Commit 3a0f013

Browse files
committed
[stdlib] string identical aeic
1 parent 56da8c0 commit 3a0f013

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

stdlib/public/core/String.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1126,7 +1126,7 @@ extension String {
11261126
/// identical.
11271127
///
11281128
/// - Performance: O(1)
1129-
@backDeployed(before: SwiftStdlib 6.3)
1129+
@_alwaysEmitIntoClient
11301130
public func isIdentical(to other: Self) -> Bool {
11311131
self._guts.rawBits == other._guts.rawBits
11321132
}

stdlib/public/core/Substring.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1322,7 +1322,7 @@ extension Substring {
13221322
/// identical.
13231323
///
13241324
/// - Performance: O(1)
1325-
@backDeployed(before: SwiftStdlib 6.3)
1325+
@_alwaysEmitIntoClient
13261326
public func isIdentical(to other: Self) -> Bool {
13271327
self._wholeGuts.rawBits == other._wholeGuts.rawBits &&
13281328
self._offsetRange == other._offsetRange

0 commit comments

Comments
 (0)