From 31d0b74e408dfeb3bd03ae20a8e5a56ea9830a1a Mon Sep 17 00:00:00 2001 From: Kevin Barnes Date: Wed, 13 Jun 2018 14:07:46 -0400 Subject: [PATCH] Prevent inlining of HostCell.isEqual --- FunctionalTableData/HostCell.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/FunctionalTableData/HostCell.swift b/FunctionalTableData/HostCell.swift index d8a2932..23177ee 100644 --- a/FunctionalTableData/HostCell.swift +++ b/FunctionalTableData/HostCell.swift @@ -93,6 +93,7 @@ public struct HostCell: CellConfigType where View: UIView, cellUpdater(cell.view, state) } + @inline(never) public func isEqual(_ other: CellConfigType) -> Bool { if let other = other as? HostCell { return state == other.state