aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc++
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2017-11-06 10:08:31 -0800
committerGravatar Vijay Pai <vpai@google.com>2017-11-06 10:08:31 -0800
commit35e14cfc6cef69366676768e3d54b18492c55f9a (patch)
tree6a84522108ee83c82952c428e01b87ab665dc5dd /include/grpc++
parente5bca395f9bd9e6c017db3fd318ec608b5289341 (diff)
Function shouldn't have semicolon afterward
Diffstat (limited to 'include/grpc++')
-rw-r--r--include/grpc++/impl/codegen/client_unary_call.h2
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 {