Merge pull request #18838 from yashykt/comment_names

Comment out names of unused arguments
pull/18817/head^2
Yash Tibrewal 6 years ago committed by GitHub
commit 5224e88ee5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      include/grpcpp/security/credentials.h

@ -98,10 +98,10 @@ class ChannelCredentials : private GrpcLibraryCodegen {
// This function should have been a pure virtual function, but it is
// implemented as a virtual function so that it does not break API.
virtual std::shared_ptr<Channel> CreateChannelWithInterceptors(
const grpc::string& target, const ChannelArguments& args,
const grpc::string& /* target */, const ChannelArguments& /* args */,
std::vector<
std::unique_ptr<experimental::ClientInterceptorFactoryInterface>>
interceptor_creators) {
/* interceptor_creators */) {
return nullptr;
}
};

Loading…
Cancel
Save