Skip to content

Commit

Permalink
Merge pull request grpc#1520 from ctiller/create-pull-request/patch-5…
Browse files Browse the repository at this point in the history
…aad589

Automated fix for refs/heads/cg-http-svr
  • Loading branch information
ctiller authored Dec 1, 2023
2 parents 5aad589 + 88a8251 commit cdde418
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/core/lib/channel/promise_based_filter.h
Original file line number Diff line number Diff line change
Expand Up @@ -321,11 +321,11 @@ inline auto RunCall(
}

template <typename Derived>
inline auto RunCall(
ServerMetadataHandle (Derived::Call::*fn)(ClientMetadata& md,
Derived* channel),
CallArgs call_args, NextPromiseFactory next_promise_factory,
FilterCallData<Derived>* call_data) -> ArenaPromise<ServerMetadataHandle> {
inline auto RunCall(ServerMetadataHandle (Derived::Call::*fn)(
ClientMetadata& md, Derived* channel),
CallArgs call_args, NextPromiseFactory next_promise_factory,
FilterCallData<Derived>* call_data)
-> ArenaPromise<ServerMetadataHandle> {
GPR_DEBUG_ASSERT(fn == &Derived::Call::OnClientInitialMetadata);
auto return_md = call_data->call.OnClientInitialMetadata(
*call_args.client_initial_metadata, call_data->channel);
Expand Down

0 comments on commit cdde418

Please sign in to comment.