From 74f554c2b93a9df4e004c99a5fc499d0e9549788 Mon Sep 17 00:00:00 2001 From: BiNo Date: Wed, 25 Mar 2020 15:37:35 +0100 Subject: [PATCH] add Swift.Collection --- Sources/Internal/SnapshotStructure.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Internal/SnapshotStructure.swift b/Sources/Internal/SnapshotStructure.swift index 8e6cbe9..35bcc67 100644 --- a/Sources/Internal/SnapshotStructure.swift +++ b/Sources/Internal/SnapshotStructure.swift @@ -35,7 +35,7 @@ struct SnapshotStructure { self.init(id: id, items: [], isReloaded: false) } - init(source: Section, elements: C) where C.Element == Item { + init(source: Section, elements: C) where C.Element == Item { self.init(id: source.differenceIdentifier, items: Array(elements), isReloaded: source.isReloaded) }