From 80a811bd3769a99c2b58b07a2a9b1c49f5938afc Mon Sep 17 00:00:00 2001 From: Jinwoo Kim Date: Sun, 28 Dec 2025 22:49:57 +0900 Subject: [PATCH] Remove & operator --- Sources/OpenSwiftUICore/Runtime/ConditionalMetadata.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/OpenSwiftUICore/Runtime/ConditionalMetadata.swift b/Sources/OpenSwiftUICore/Runtime/ConditionalMetadata.swift index e33aa0737..7fb0e8d2a 100644 --- a/Sources/OpenSwiftUICore/Runtime/ConditionalMetadata.swift +++ b/Sources/OpenSwiftUICore/Runtime/ConditionalMetadata.swift @@ -114,7 +114,7 @@ package struct ConditionalTypeDescriptor

where P: ConditionalProtocolDescript at: base, tag: tag ) { ptr in - descriptor.project(at: ptr, baseIndex: baseIndex &+ 1, body) + descriptor.project(at: ptr, baseIndex: baseIndex + 1, body) } } case let .either(type, falseDescriptor, trueDescriptor):