Remove unneeded semicolons

Caught by linter
pull/21429/head
Vijay Pai 5 years ago committed by GitHub
parent a12a8f0ce2
commit ad697806ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      include/grpcpp/generic/generic_stub_impl.h

@ -79,7 +79,7 @@ class GenericStub final {
std::function<void(grpc::Status)> on_completion) {
UnaryCallInternal(context, method, request, response,
std::move(on_completion));
};
}
/// Setup a unary call to a named method \a method using
/// \a context and specifying the \a request and \a response buffers.
@ -119,7 +119,7 @@ class GenericStub final {
std::function<void(grpc::Status)> on_completion) {
stub_->UnaryCallInternal(context, method, request, response,
std::move(on_completion));
};
}
/// Setup a unary call to a named method \a method using
/// \a context and specifying the \a request and \a response buffers.

Loading…
Cancel
Save