This commit is contained in:
John Estropia
2026-07-24 11:51:36 +09:00
parent 1ea9ad7c4a
commit 13093d72d4
51 changed files with 1083 additions and 243 deletions
+1 -1
View File
@@ -107,7 +107,7 @@ extension DispatchQueue {
@nonobjc @inline(__always)
internal func cs_barrierSync<T>(
_ closure: () throws(any Swift.Error) -> T
_ closure: () throws(any Swift::Error) -> T
) rethrows -> T {
return try self.sync(flags: .barrier) { try autoreleasepool(invoking: closure) }