Merge pull request #18793 from lidizheng/fix-clang-tidy

Cleanup Clang Tidy errors
reviewable/pr18804/r1
Lidi Zheng 6 years ago committed by GitHub
commit fc2376e239
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/core/ext/filters/client_channel/client_channel.cc
  2. 2
      src/core/lib/compression/compression_args.h

@ -146,7 +146,7 @@ class ChannelData {
return picker_.get();
}
void AddQueuedPick(QueuedPick* pick, grpc_polling_entity* pollent);
void RemoveQueuedPick(QueuedPick* pick, grpc_polling_entity* pollent);
void RemoveQueuedPick(QueuedPick* to_remove, grpc_polling_entity* pollent);
bool received_service_config_data() const {
return received_service_config_data_;
@ -223,7 +223,7 @@ class ChannelData {
~ChannelData();
static bool ProcessResolverResultLocked(
void* arg, Resolver::Result* args, const char** lb_policy_name,
void* arg, Resolver::Result* result, const char** lb_policy_name,
RefCountedPtr<LoadBalancingPolicy::Config>* lb_policy_config);
grpc_error* DoPingLocked(grpc_transport_op* op);

@ -42,7 +42,7 @@ grpc_channel_args* grpc_channel_args_set_compression_algorithm(
* modified to point to the returned instance (which may be different from the
* input value of \a a). */
grpc_channel_args* grpc_channel_args_compression_algorithm_set_state(
grpc_channel_args** a, grpc_compression_algorithm algorithm, int enabled);
grpc_channel_args** a, grpc_compression_algorithm algorithm, int state);
/** Returns the bitset representing the support state (true for enabled, false
* for disabled) for compression algorithms.

Loading…
Cancel
Save