mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-04-10 11:23:39 +02:00
fix compiler error on Xcode 13
This commit is contained in:
@@ -573,7 +573,7 @@ extension Internals {
|
|||||||
|
|
||||||
let items = itemIDs.lazy.map({ Item(differenceIdentifier: $0) })
|
let items = itemIDs.lazy.map({ Item(differenceIdentifier: $0) })
|
||||||
self.sections[indexPath.section].elements
|
self.sections[indexPath.section].elements
|
||||||
.insert(contentsOf: items, at: indexPath.row)
|
.insert(contentsOf: items, at: indexPath.item)
|
||||||
}
|
}
|
||||||
|
|
||||||
mutating func remove<S: Sequence>(itemIDs: S) where S.Element == NSManagedObjectID {
|
mutating func remove<S: Sequence>(itemIDs: S) where S.Element == NSManagedObjectID {
|
||||||
|
|||||||
Reference in New Issue
Block a user