Remove unused function for Xcode 27 compatiblity (ambiguous use error)

This commit is contained in:
Antoine Marandon
2026-06-09 15:41:30 +09:00
parent 104def4611
commit be977e255b
-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