From 35e14cfc6cef69366676768e3d54b18492c55f9a Mon Sep 17 00:00:00 2001 From: Vijay Pai <vpai@google.com> Date: Mon, 6 Nov 2017 10:08:31 -0800 Subject: [PATCH] Function shouldn't have semicolon afterward --- include/grpc++/impl/codegen/client_unary_call.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/grpc++/impl/codegen/client_unary_call.h b/include/grpc++/impl/codegen/client_unary_call.h index 170c562cf3b..256dd859d3b 100644 --- a/include/grpc++/impl/codegen/client_unary_call.h +++ b/include/grpc++/impl/codegen/client_unary_call.h @@ -41,7 +41,7 @@ Status BlockingUnaryCall(ChannelInterface* channel, const RpcMethod& method, return BlockingUnaryCallImpl<InputMessage, OutputMessage>( channel, method, context, request, result) .status(); -}; +} template <class InputMessage, class OutputMessage> class BlockingUnaryCallImpl {