Skip to content

Commit 2b63da1

Browse files
committed
[stdlib] string identical aeic
1 parent fefc045 commit 2b63da1

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
@@ -1400,7 +1400,7 @@ extension Substring {
14001400
/// identical.
14011401
///
14021402
/// - Performance: O(1)
1403-
@backDeployed(before: SwiftStdlib 6.3)
1403+
@_alwaysEmitIntoClient
14041404
public func isIdentical(to other: Self) -> Bool {
14051405
self._wholeGuts.rawBits == other._wholeGuts.rawBits &&
14061406
self._offsetRange == other._offsetRange

0 commit comments

Comments
 (0)