Skip to content

Commit e146d3f

Browse files
authored
Changed @inlinable to @_alwaysEmitIntoClient
1 parent 6ce51ed commit e146d3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stdlib/public/core/Indices.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,14 @@ extension DefaultIndices: Collection {
8787
return _elements.index(i, offsetBy: distance)
8888
}
8989

90-
@inlinable
90+
@_alwaysEmitIntoClient
9191
public func index(
9292
_ i: Index, offsetBy distance: Int, limitedBy limit: Index
9393
) -> Index? {
9494
return _elements.index(i, offsetBy: distance, limitedBy: limit)
9595
}
9696

97-
@inlinable
97+
@_alwaysEmitIntoClient
9898
public func distance(from start: Index, to end: Index) -> Int {
9999
return _elements.distance(from: start, to: end)
100100
}

0 commit comments

Comments
 (0)