Deal with some namespacing issues (#27651)

pull/27609/head
Craig Tiller 4 years ago committed by GitHub
parent b3a1f68606
commit ee47e08f71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      test/core/end2end/fuzzers/api_fuzzer.cc

@ -535,8 +535,8 @@ Call::~Call() {
}
}
grpc_channel_args* ReadArgs(
const google::protobuf::RepeatedPtrField<api_fuzzer::ChannelArg>& args) {
template <typename ChannelArgContainer>
grpc_channel_args* ReadArgs(const ChannelArgContainer& args) {
grpc_channel_args* res =
static_cast<grpc_channel_args*>(gpr_malloc(sizeof(grpc_channel_args)));
res->num_args = args.size();

Loading…
Cancel
Save