aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Craig Tiller <craig.tiller@gmail.com>2015-04-27 18:27:04 -0700
committerGravatar Craig Tiller <craig.tiller@gmail.com>2015-04-27 18:27:41 -0700
commitb11728b90d5c4bbc3cae105b82b10bbf501f323f (patch)
treeb504d9d1d77a8be65a2a9b0b4838901631363258
parentb33e2d3bc2641ece60e392677d52df57736e7aaa (diff)
Mac C++ compile fix
-rw-r--r--include/grpc++/channel_interface.h6
-rw-r--r--src/cpp/client/channel.h1
2 files changed, 5 insertions, 2 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() {}
diff --git a/src/cpp/client/channel.h b/src/cpp/client/channel.h
index 46009d20ba..cd239247c8 100644
--- a/src/cpp/client/channel.h
+++ b/src/cpp/client/channel.h
@@ -51,7 +51,6 @@ class Credentials;
class StreamContextInterface;
class Channel GRPC_FINAL : public GrpcLibrary,
- public std::enable_shared_from_this<Channel>,
public ChannelInterface {
public:
Channel(const grpc::string& target, grpc_channel* c_channel);