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
+2 -2
View File
@@ -46,7 +46,7 @@ extension Internals {
borrowing func withLock<Result, E>(
_ body: (inout sending Value) throws(E) -> sending Result
) throws(E) -> sending Result
where E: Error, Result: ~Copyable {
where E: Swift::Error, Result: ~Copyable {
let storage = self.storage
storage.lock()
@@ -60,7 +60,7 @@ extension Internals {
borrowing func withLockUnchecked<Result, E>(
_ body: (inout sending Value) throws(E) -> Result
) throws(E) -> sending Result
where E: Error {
where E: Swift::Error {
let storage = self.storage
storage.lock()