From d1e9c12f508c0140705ae1d12d6929398b7f3ca3 Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Mon, 5 Aug 2024 00:22:50 -0700 Subject: [PATCH] no retroactive, it's not supported until Xcode 15 --- Sources/Voxelotl/Application.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Voxelotl/Application.swift b/Sources/Voxelotl/Application.swift index f657d6f..5fd7341 100644 --- a/Sources/Voxelotl/Application.swift +++ b/Sources/Voxelotl/Application.swift @@ -174,7 +174,7 @@ fileprivate enum ApplicationExecutionState { case running } -extension FileHandle: @retroactive TextOutputStream { +extension FileHandle: TextOutputStream { public func write(_ string: String) { self.write(Data(string.utf8)) }