Skip to content

Commit 92d2959

Browse files
committed
Regroup ABI expected list by change
1 parent b1038e9 commit 92d2959

File tree

2 files changed

+14
-24
lines changed

2 files changed

+14
-24
lines changed

stdlib/public/core/Misc.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ public func _autorelease(_ x: AnyObject) {
5151
///
5252
/// This function is primarily useful to call various runtime functions
5353
/// written in C++.
54-
@inlinable
5554
internal func _withUninitializedString<R>(
5655
_ body: (UnsafeMutablePointer<String>) -> R
5756
) -> (R, String) {
Lines changed: 14 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,29 @@
1-
2-
/* Generic Signature Changes */
31
Func MutableCollection._partition(within:by:) has generic signature change from <τ_0_0 where τ_0_0 : MutableCollection, τ_0_0 : RandomAccessCollection> to <τ_0_0 where τ_0_0 : BidirectionalCollection, τ_0_0 : MutableCollection>
4-
5-
/* RawRepresentable Changes */
6-
7-
/* Removed Decls */
8-
Class _stdlib_AtomicInt has been removed
9-
Func BinaryInteger._description(radix:uppercase:) has been removed
2+
Func MutableCollection._partition(within:by:) has been renamed to Func MutableCollection._partitionImpl(by:)
103
Func MutableCollection._heapSort(within:by:) has been removed
114
Func MutableCollection._heapify(within:by:) has been removed
125
Func MutableCollection._introSort(within:by:) has been removed
136
Func MutableCollection._introSortImpl(within:by:depthLimit:) has been removed
147
Func MutableCollection._siftDown(_:within:by:) has been removed
158
Func MutableCollection._sort3(_:_:_:by:) has been removed
9+
Func MutableCollection._partition(within:by:) has parameter 0 type change from Range<τ_0_0.Index> to (τ_0_0.Element) throws -> Bool
10+
11+
Func BinaryInteger._description(radix:uppercase:) has been removed
12+
Struct _Buffer32 has been removed
13+
Struct _Buffer72 has been removed
1614
Func _int64ToString(_:radix:uppercase:) has been removed
1715
Func _int64ToStringImpl(_:_:_:_:_:) has been removed
16+
Func _uint64ToStringImpl(_:_:_:_:_:) has been removed
17+
Func _withUninitializedString(_:) has been removed
18+
19+
Class _stdlib_AtomicInt has been removed
1820
Func _stdlib_atomicCompareExchangeStrongInt(object:expected:desired:) has been removed
1921
Func _stdlib_atomicCompareExchangeStrongInt32(object:expected:desired:) has been removed
2022
Func _stdlib_atomicCompareExchangeStrongInt64(object:expected:desired:) has been removed
2123
Func _stdlib_atomicCompareExchangeStrongUInt32(object:expected:desired:) has been removed
2224
Func _stdlib_atomicCompareExchangeStrongUInt64(object:expected:desired:) has been removed
25+
Func _swift_stdlib_atomicFetchAddInt32(object:operand:) has been removed
26+
Func _swift_stdlib_atomicFetchAddInt64(object:operand:) has been removed
2327
Func _swift_stdlib_atomicFetchAddInt(object:operand:) has been removed
2428
Func _swift_stdlib_atomicFetchAddInt32(object:operand:) has been removed
2529
Func _swift_stdlib_atomicFetchAddInt64(object:operand:) has been removed
@@ -50,25 +54,12 @@ Func _swift_stdlib_atomicStoreInt32(object:desired:) has been removed
5054
Func _swift_stdlib_atomicStoreInt64(object:desired:) has been removed
5155
Func _swift_stdlib_atomicStoreUInt32(object:desired:) has been removed
5256
Func _swift_stdlib_atomicStoreUInt64(object:desired:) has been removed
53-
Func _uint64ToStringImpl(_:_:_:_:_:) has been removed
57+
58+
Struct Hasher._Core has removed conformance to _HasherCore
5459
Protocol _HasherCore has been removed
55-
Struct _Buffer32 has been removed
56-
Struct _Buffer72 has been removed
5760
Struct _BufferingHasher has been removed
5861
Struct _HasherTailBuffer has been removed
59-
60-
/* Moved Decls */
61-
62-
/* Renamed Decls */
63-
Func MutableCollection._partition(within:by:) has been renamed to Func MutableCollection._partitionImpl(by:)
64-
65-
/* Type Changes */
66-
Func MutableCollection._partition(within:by:) has parameter 0 type change from Range<τ_0_0.Index> to (τ_0_0.Element) throws -> Bool
6762
Var Hasher._core has declared type change from _BufferingHasher<Hasher._Core> to Hasher._Core
6863
Var Hasher._Core._buffer is added to a non-resilient type
6964
Var Hasher._Core._state in a non-resilient type changes position from 0 to 1
70-
Struct Hasher._Core has removed conformance to _HasherCore
71-
72-
/* Decl Attribute changes */
7365

74-
/* Protocol Requirement Changes */

0 commit comments

Comments
 (0)