From 113c7fcb7c4a7ced7275a792f0a0bdc6fc28c3de Mon Sep 17 00:00:00 2001 From: Vijay Pai Date: Thu, 7 May 2020 08:35:24 -0700 Subject: [PATCH] Mark override on service method --- test/cpp/end2end/interceptors_util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cpp/end2end/interceptors_util.h b/test/cpp/end2end/interceptors_util.h index cac9f3a6bb8..2aafea2d54e 100644 --- a/test/cpp/end2end/interceptors_util.h +++ b/test/cpp/end2end/interceptors_util.h @@ -103,7 +103,7 @@ class EchoTestServiceStreamingImpl : public EchoTestService::Service { ~EchoTestServiceStreamingImpl() override {} Status Echo(ServerContext* context, const EchoRequest* request, - EchoResponse* response) { + EchoResponse* response) override { auto client_metadata = context->client_metadata(); for (const auto& pair : client_metadata) { context->AddTrailingMetadata(ToString(pair.first), ToString(pair.second));