From 11731e7a7be6cefc3de07d425be97f33492859a4 Mon Sep 17 00:00:00 2001 From: Steven Date: Tue, 17 Dec 2024 17:29:20 -0800 Subject: [PATCH] from abi doesn't need to throw --- swiftwinrt/Resources/Support/WinRTBridgeable.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swiftwinrt/Resources/Support/WinRTBridgeable.swift b/swiftwinrt/Resources/Support/WinRTBridgeable.swift index 2a215fb0..00a9edc9 100644 --- a/swiftwinrt/Resources/Support/WinRTBridgeable.swift +++ b/swiftwinrt/Resources/Support/WinRTBridgeable.swift @@ -7,7 +7,7 @@ public protocol ToAbi { @_spi(WinRTInternal) public protocol FromAbi { associatedtype ABI - static func from(abi: ABI) throws -> Self + static func from(abi: ABI) -> Self } @_spi(WinRTInternal)