Compare commits

..

2 Commits

Author SHA1 Message Date
John Estropia 3328837175 Merge pull request #519 from ntnmrndn/antoine/xcode_27
Remove unused function for Xcode 27 compatiblity (ambiguous use error)
2026-06-24 14:49:37 +09:00
Antoine Marandon be977e255b Remove unused function for Xcode 27 compatiblity (ambiguous use error) 2026-06-09 15:41:30 +09:00
2 changed files with 3 additions and 11 deletions
+3 -3
View File
@@ -28,8 +28,8 @@ Pod::Spec.new do |s|
ts.resource_bundles = { 'CoreStoreTests' => ["CoreStoreTests/**/*.momd"] }
ts.frameworks = "Foundation", "CoreData"
ts.requires_arc = true
ts.ios.deployment_target = "16.0"
ts.osx.deployment_target = "13.0"
ts.tvos.deployment_target = "16.0"
ts.ios.deployment_target = "13.0"
ts.osx.deployment_target = "10.15"
ts.tvos.deployment_target = "13.0"
end
end
-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