aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc++/generic/async_generic_service.h
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-11-04 08:07:20 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-11-04 08:07:20 -0700
commit453d56317a70de43c71d7682330f33e338753380 (patch)
tree1b5316dfb75cc052dbb96d615142abb35b88f188 /include/grpc++/generic/async_generic_service.h
parentac119ba887e37c8b4c7fc0e6f43477869796db06 (diff)
parent852c58e8ae64ccd7361ab0bdc36f3297960c9d5b (diff)
Merge github.com:grpc/grpc into microbench
Diffstat (limited to 'include/grpc++/generic/async_generic_service.h')
-rw-r--r--include/grpc++/generic/async_generic_service.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/grpc++/generic/async_generic_service.h b/include/grpc++/generic/async_generic_service.h
index 24bae52145..66a5d01d96 100644
--- a/include/grpc++/generic/async_generic_service.h
+++ b/include/grpc++/generic/async_generic_service.h
@@ -44,7 +44,7 @@ namespace grpc {
typedef ServerAsyncReaderWriter<ByteBuffer, ByteBuffer>
GenericServerAsyncReaderWriter;
-class GenericServerContext GRPC_FINAL : public ServerContext {
+class GenericServerContext final : public ServerContext {
public:
const grpc::string& method() const { return method_; }
const grpc::string& host() const { return host_; }
@@ -57,7 +57,7 @@ class GenericServerContext GRPC_FINAL : public ServerContext {
grpc::string host_;
};
-class AsyncGenericService GRPC_FINAL {
+class AsyncGenericService final {
public:
AsyncGenericService() : server_(nullptr) {}