Skip to content

Commit

Permalink
rebase fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ktoso committed Jul 20, 2022
1 parent db3071b commit f369625
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ public struct ClusterInvocationDecoder: DistributedTargetInvocationDecoder {
// Potentially used by interceptors, when invoking a local target directly
case localProxyCall(ClusterSystem.InvocationEncoder)
}

var argumentIdx = 0

public init(system: ClusterSystem, message: InvocationMessage) {
Expand All @@ -85,7 +86,7 @@ public struct ClusterInvocationDecoder: DistributedTargetInvocationDecoder {
public mutating func decodeGenericSubstitutions() throws -> [Any.Type] {
let genericSubstitutions: [String]
switch self.state {
case .remoteCall(_, let message):
case .remoteCall(let message):
genericSubstitutions = message.genericSubstitutions
case .localProxyCall(let invocation):
genericSubstitutions = invocation.genericSubstitutions
Expand Down

0 comments on commit f369625

Please sign in to comment.