Skip to content
Snippets Groups Projects
Commit e8a61d63 authored by yang-g's avatar yang-g
Browse files

Add a default delete override for the interface

parent fc22d7af
No related branches found
No related tags found
No related merge requests found
...@@ -307,6 +307,11 @@ class default_delete<grpc::ClientAsyncResponseReader<R>> { ...@@ -307,6 +307,11 @@ class default_delete<grpc::ClientAsyncResponseReader<R>> {
public: public:
void operator()(void* p) {} void operator()(void* p) {}
}; };
template <class R>
class default_delete<grpc::ClientAsyncResponseReaderInterface<R>> {
public:
void operator()(void* p) {}
};
} }
#endif // GRPCXX_IMPL_CODEGEN_ASYNC_UNARY_CALL_H #endif // GRPCXX_IMPL_CODEGEN_ASYNC_UNARY_CALL_H
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment