aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar yang-g <yangg@google.com>2017-12-11 16:51:06 -0800
committerGravatar yang-g <yangg@google.com>2017-12-11 17:00:33 -0800
commit9c5d8267cd17c16306e83b678b6fe4cf50aa7125 (patch)
treeea8d6d80690396014cf951980257f5c72120cee1 /include
parent69aec175625b131ae2305280589cfc87644f9fae (diff)
resolve comments
Diffstat (limited to 'include')
-rw-r--r--include/grpc++/impl/codegen/async_unary_call.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/grpc++/impl/codegen/async_unary_call.h b/include/grpc++/impl/codegen/async_unary_call.h
index 2bbbb87503..fb573004cb 100644
--- a/include/grpc++/impl/codegen/async_unary_call.h
+++ b/include/grpc++/impl/codegen/async_unary_call.h
@@ -106,9 +106,9 @@ class ClientAsyncResponseReader final
// This operator should never be called as the memory should be freed as part
// of the arena destruction. It only exists to provide a matching operator
// delete to the operator new so that some compilers will not complain (see
- // Issue# 11301). Note at the time of adding this there is no tests catching
- // the compiler warning.
- static void operator delete(void*, void*) {}
+ // https://github.com/grpc/grpc/issues/11301) Note at the time of adding this
+ // there are no tests catching the compiler warning.
+ static void operator delete(void*, void*) { assert(0); }
void StartCall() override {
assert(!started_);