Merge pull request #519 from ntnmrndn/antoine/xcode_27

Remove unused function for Xcode 27 compatiblity (ambiguous use error)
This commit is contained in:
John Estropia
2026-06-24 14:49:37 +09:00
committed by GitHub
-8
View File
@@ -82,14 +82,6 @@ extension DispatchQueue {
return self.sync { autoreleasepool(invoking: closure) }
}
@nonobjc @inline(__always)
internal func cs_sync<T>(
_ closure: () throws(any Swift.Error) -> T
) throws(any Swift.Error) -> T {
return try self.sync { try autoreleasepool(invoking: closure) }
}
@nonobjc @inline(__always)
internal func cs_sync<T>(
_ closure: () throws(CoreStoreError) -> T