From 7a9c127037f00da75633441583d98c980483e326 Mon Sep 17 00:00:00 2001 From: Jinwoo Kim Date: Sun, 18 Jan 2026 01:01:55 +0900 Subject: [PATCH] Optimize overflow for _GraphInputs.Phase.merge(_:). --- Sources/OpenSwiftUICore/Graph/GraphInputs.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/OpenSwiftUICore/Graph/GraphInputs.swift b/Sources/OpenSwiftUICore/Graph/GraphInputs.swift index 712fd1a27..f56688b69 100644 --- a/Sources/OpenSwiftUICore/Graph/GraphInputs.swift +++ b/Sources/OpenSwiftUICore/Graph/GraphInputs.swift @@ -122,7 +122,7 @@ public struct _GraphInputs { @inlinable package mutating func merge(_ other: _GraphInputs.Phase) { - resetSeed = resetSeed + other.resetSeed + resetSeed = resetSeed &+ other.resetSeed isBeingRemoved = isBeingRemoved || other.isBeingRemoved }