From cccfa3d3394ec5a1b946e3a68c5d99016ea57a06 Mon Sep 17 00:00:00 2001 From: Richard Howell Date: Thu, 18 Jul 2024 09:50:17 -0700 Subject: [PATCH] xcodestaging fixes Summary: The Xcode beta toolchain has some minor changes around `unchecked Sendable` that require patching before we can update. Reviewed By: drodriguez Differential Revision: D59877196 fbshipit-source-id: d17d472f3b8aa9724fd0a0985a61a9eeb3030903 --- Lexical/TextKit/LayoutManager.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lexical/TextKit/LayoutManager.swift b/Lexical/TextKit/LayoutManager.swift index b0cf45b..b9cdd5c 100644 --- a/Lexical/TextKit/LayoutManager.swift +++ b/Lexical/TextKit/LayoutManager.swift @@ -7,7 +7,7 @@ import UIKit -public class LayoutManager: NSLayoutManager { +public class LayoutManager: NSLayoutManager, @unchecked Sendable { internal weak var editor: Editor? { get { if let textStorage = textStorage as? TextStorage {