summaryrefslogtreecommitdiff
path: root/lib/cpp/src/thrift/transport/TPipeServer.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/cpp/src/thrift/transport/TPipeServer.h')
-rw-r--r--lib/cpp/src/thrift/transport/TPipeServer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/cpp/src/thrift/transport/TPipeServer.h b/lib/cpp/src/thrift/transport/TPipeServer.h
index 405793e7d..117773c22 100644
--- a/lib/cpp/src/thrift/transport/TPipeServer.h
+++ b/lib/cpp/src/thrift/transport/TPipeServer.h
@@ -21,7 +21,7 @@
#define _THRIFT_TRANSPORT_TSERVERWINPIPES_H_ 1
#include <thrift/transport/TServerTransport.h>
-#include <boost/shared_ptr.hpp>
+#include <thrift/stdcxx.h>
#ifndef _WIN32
#include <thrift/transport/TServerSocket.h>
#endif
@@ -82,10 +82,10 @@ public:
HANDLE getNativeWaitHandle();
protected:
- virtual boost::shared_ptr<TTransport> acceptImpl();
+ virtual stdcxx::shared_ptr<TTransport> acceptImpl();
private:
- boost::shared_ptr<TPipeServerImpl> impl_;
+ stdcxx::shared_ptr<TPipeServerImpl> impl_;
std::string pipename_;
uint32_t bufsize_;