Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
muukii committed Dec 12, 2024
1 parent 7754245 commit c5bf12b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Sources/Verge/Store/Store.swift
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ extension Store {
@inline(__always)
func _receive_sending<Result>(
mutation: (inout InoutRef<State>, inout Transaction) throws -> Result
) rethrows -> sending Result {
) rethrows -> Result {

let signpost = VergeSignpostTransaction("Store.commit")
defer {
Expand Down
6 changes: 3 additions & 3 deletions Sources/Verge/Store/StoreDriverType.swift
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ extension StoreDriverType {
_ file: StaticString = #file,
_ function: StaticString = #function,
_ line: UInt = #line,
mutation: sending (inout InoutRef<Scope>) throws -> Result
mutation: sending (inout InoutRef<Scope>) throws -> sending Result
) async rethrows -> Result {

let trace = MutationTrace(
Expand Down Expand Up @@ -493,7 +493,7 @@ extension StoreDriverType {
_ file: StaticString = #file,
_ function: StaticString = #function,
_ line: UInt = #line,
mutation: sending (inout InoutRef<Scope>, inout Transaction) throws -> Result
mutation: sending (inout InoutRef<Scope>, inout Transaction) throws -> sending Result
) async rethrows -> Result {

let trace = MutationTrace(
Expand Down Expand Up @@ -535,7 +535,7 @@ extension StoreDriverType {
_ file: StaticString = #file,
_ function: StaticString = #function,
_ line: UInt = #line,
mutation: sending (inout InoutRef<Scope>) throws -> Result
mutation: sending (inout InoutRef<Scope>) throws -> sending Result
) async rethrows -> Result where Scope == TargetStore.State {

let trace = MutationTrace(
Expand Down

0 comments on commit c5bf12b

Please sign in to comment.