aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc++
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2017-11-06 12:47:14 -0800
committerGravatar GitHub <noreply@github.com>2017-11-06 12:47:14 -0800
commit0f2cfdcc0f57d21fe2823268263ef5bdc4b6704c (patch)
treec08b9b6b06f568a55619cb6c953877e718343275 /include/grpc++
parente759d2ad7abdb0702970eeccc5f033ff4b2a4c7f (diff)
parent35e14cfc6cef69366676768e3d54b18492c55f9a (diff)
Merge pull request #13271 from vjpai/semi
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 {