summaryrefslogtreecommitdiff
path: root/contrib/zeromq/TZmqServer.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/zeromq/TZmqServer.h')
-rw-r--r--contrib/zeromq/TZmqServer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/zeromq/TZmqServer.h b/contrib/zeromq/TZmqServer.h
index a840c8646..43f86c084 100644
--- a/contrib/zeromq/TZmqServer.h
+++ b/contrib/zeromq/TZmqServer.h
@@ -28,7 +28,7 @@ namespace apache { namespace thrift { namespace server {
class TZmqServer : public TServer {
public:
TZmqServer(
- boost::shared_ptr<TProcessor> processor,
+ apache::thrift::stdcxx::shared_ptr<TProcessor> processor,
zmq::context_t& ctx, const std::string& endpoint, int type)
: TServer(processor)
, processor_(processor)
@@ -56,7 +56,7 @@ class TZmqServer : public TServer {
}
private:
- boost::shared_ptr<TProcessor> processor_;
+ apache::thrift::stdcxx::shared_ptr<TProcessor> processor_;
int zmq_type_;
zmq::socket_t sock_;
};