diff options
author | Craig Tiller <craig.tiller@gmail.com> | 2015-04-27 18:27:04 -0700 |
---|---|---|
committer | Craig Tiller <craig.tiller@gmail.com> | 2015-04-27 18:27:41 -0700 |
commit | b11728b90d5c4bbc3cae105b82b10bbf501f323f (patch) | |
tree | b504d9d1d77a8be65a2a9b0b4838901631363258 /include | |
parent | b33e2d3bc2641ece60e392677d52df57736e7aaa (diff) |
Mac C++ compile fix
Diffstat (limited to 'include')
-rw-r--r-- | include/grpc++/channel_interface.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/grpc++/channel_interface.h b/include/grpc++/channel_interface.h index 4d48974e69..e86a83bc45 100644 --- a/include/grpc++/channel_interface.h +++ b/include/grpc++/channel_interface.h @@ -34,6 +34,8 @@ #ifndef GRPCXX_CHANNEL_INTERFACE_H #define GRPCXX_CHANNEL_INTERFACE_H +#include <memory> + #include <grpc++/status.h> #include <grpc++/impl/call.h> @@ -47,7 +49,9 @@ class CompletionQueue; class RpcMethod; class CallInterface; -class ChannelInterface : public CallHook { +class ChannelInterface + : public CallHook, + public std::enable_shared_from_this<ChannelInterface> { public: virtual ~ChannelInterface() {} |