Merge branch 'develop' of https://github.com/JohnEstropia/CoreStore into develop

This commit is contained in:
John Estropia
2026-07-06 11:54:29 +09:00
-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