aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpcpp/impl/codegen/interceptor.h
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2018-10-02 14:17:59 -0700
committerGravatar Yash Tibrewal <yashkt@google.com>2018-10-16 14:09:34 -0700
commit5d831da9d135d7f1c58ff61bacb6e5a2787f05c9 (patch)
tree83a688383b0fae19bb88adb8e44df30a03abe4a6 /include/grpcpp/impl/codegen/interceptor.h
parent8e626a8de1ce101bf4d1fd8856c87de1cc43f7bd (diff)
Adding hook points for interception. Code compiles and tests still run
Diffstat (limited to 'include/grpcpp/impl/codegen/interceptor.h')
-rw-r--r--include/grpcpp/impl/codegen/interceptor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/grpcpp/impl/codegen/interceptor.h b/include/grpcpp/impl/codegen/interceptor.h
index 6402a3a946..84dce42f97 100644
--- a/include/grpcpp/impl/codegen/interceptor.h
+++ b/include/grpcpp/impl/codegen/interceptor.h
@@ -50,7 +50,7 @@ enum class InterceptionHookPoints {
class InterceptorBatchMethods {
public:
- virtual ~InterceptorBatchMethods();
+ virtual ~InterceptorBatchMethods(){};
// Queries to check whether the current batch has an interception hook point
// of type \a type
virtual bool QueryInterceptionHookPoint(InterceptionHookPoints type) = 0;