diff options
author | Vijay Pai <vpai@google.com> | 2017-11-06 10:08:31 -0800 |
---|---|---|
committer | Vijay Pai <vpai@google.com> | 2017-11-06 10:08:31 -0800 |
commit | 35e14cfc6cef69366676768e3d54b18492c55f9a (patch) | |
tree | 6a84522108ee83c82952c428e01b87ab665dc5dd /include/grpc++ | |
parent | e5bca395f9bd9e6c017db3fd318ec608b5289341 (diff) |
Function shouldn't have semicolon afterward
Diffstat (limited to 'include/grpc++')
-rw-r--r-- | include/grpc++/impl/codegen/client_unary_call.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/grpc++/impl/codegen/client_unary_call.h b/include/grpc++/impl/codegen/client_unary_call.h index 170c562cf3..256dd859d3 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 { |