Remove extra ';' after member function definition (#28038)

Some user of gRPC library have [-Werror,-Wextra-semi] set and this extra
';' makes the code uncompilable
pull/28090/head
Ming-Chuan 3 years ago committed by GitHub
parent a629c9a03e
commit 355a324cae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      include/grpcpp/security/tls_certificate_verifier.h

@ -112,7 +112,7 @@ class CertificateVerifier {
void Cancel(TlsCustomVerificationCheckRequest* request);
// Gets the core verifier used internally.
grpc_tls_certificate_verifier* c_verifier() { return verifier_; };
grpc_tls_certificate_verifier* c_verifier() { return verifier_; }
private:
static void AsyncCheckDone(

Loading…
Cancel
Save