Fix an unused parameter warning in grpcpp/impl/codegen/service_type.h (#26346)

* Initial commit

* Address @veblush comment.
pull/26383/head
Hung Dang 4 years ago committed by GitHub
parent d0849fdaed
commit e6782daf95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      include/grpcpp/impl/codegen/server_interface.h

@ -148,7 +148,7 @@ class ServerInterface : public internal::CallHook {
virtual void RegisterCallbackGenericService(
experimental::CallbackGenericService* /*service*/) {}
virtual void RegisterContextAllocator(
std::unique_ptr<ContextAllocator> context_allocator) {}
std::unique_ptr<ContextAllocator> /*context_allocator*/) {}
};
/// NOTE: The function experimental_registration() is not stable public API.

Loading…
Cancel
Save