summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorcyy <cyyever@outlook.com>2019-01-05 16:35:14 +0800
committerJames E. King III <jking@apache.org>2019-01-07 08:11:37 -0500
commit316723add4c368ffd144dd5beb55245832e073fa (patch)
tree4dc5c86e776e4818ba5fb102e33eb62cfeb8382f /contrib
parent52637b33aba090851436b2031476529423ea3281 (diff)
downloadthrift-316723add4c368ffd144dd5beb55245832e073fa.tar.gz
remove stdcxx namespace and use std directly
Diffstat (limited to 'contrib')
-rw-r--r--contrib/zeromq/TZmqServer.cpp2
-rw-r--r--contrib/zeromq/test-client.cpp2
-rw-r--r--contrib/zeromq/test-receiver.cpp2
-rw-r--r--contrib/zeromq/test-sender.cpp2
-rw-r--r--contrib/zeromq/test-server.cpp2
5 files changed, 5 insertions, 5 deletions
diff --git a/contrib/zeromq/TZmqServer.cpp b/contrib/zeromq/TZmqServer.cpp
index 4df6c9237..88660a330 100644
--- a/contrib/zeromq/TZmqServer.cpp
+++ b/contrib/zeromq/TZmqServer.cpp
@@ -21,7 +21,7 @@
#include <thrift/transport/TBufferTransports.h>
#include <boost/scoped_ptr.hpp>
-using apache::thrift::stdcxx::shared_ptr;
+using apache::thrift::std::shared_ptr;
using apache::thrift::transport::TMemoryBuffer;
using apache::thrift::protocol::TProtocol;
diff --git a/contrib/zeromq/test-client.cpp b/contrib/zeromq/test-client.cpp
index 70a331ed5..159c25030 100644
--- a/contrib/zeromq/test-client.cpp
+++ b/contrib/zeromq/test-client.cpp
@@ -6,7 +6,7 @@
#include "TZmqClient.h"
#include "Storage.h"
-using apache::thrift::stdcxx::shared_ptr;
+using apache::thrift::std::shared_ptr;
using apache::thrift::transport::TZmqClient;
using apache::thrift::protocol::TBinaryProtocol;
diff --git a/contrib/zeromq/test-receiver.cpp b/contrib/zeromq/test-receiver.cpp
index 60791ac72..d465bff63 100644
--- a/contrib/zeromq/test-receiver.cpp
+++ b/contrib/zeromq/test-receiver.cpp
@@ -2,7 +2,7 @@
#include "TZmqServer.h"
#include "Storage.h"
-using apache::thrift::stdcxx::shared_ptr;
+using apache::thrift::std::shared_ptr;
using apache::thrift::TProcessor;
using apache::thrift::server::TZmqServer;
using apache::thrift::server::TZmqMultiServer;
diff --git a/contrib/zeromq/test-sender.cpp b/contrib/zeromq/test-sender.cpp
index 8928db390..5c086a11f 100644
--- a/contrib/zeromq/test-sender.cpp
+++ b/contrib/zeromq/test-sender.cpp
@@ -6,7 +6,7 @@
#include "TZmqClient.h"
#include "Storage.h"
-using apache::thrift::stdcxx::shared_ptr;
+using apache::thrift::std::shared_ptr;
using apache::thrift::transport::TZmqClient;
using apache::thrift::protocol::TBinaryProtocol;
diff --git a/contrib/zeromq/test-server.cpp b/contrib/zeromq/test-server.cpp
index baa1451dd..e6f1b2083 100644
--- a/contrib/zeromq/test-server.cpp
+++ b/contrib/zeromq/test-server.cpp
@@ -2,7 +2,7 @@
#include "TZmqServer.h"
#include "Storage.h"
-using apache::thrift::stdcxx::shared_ptr;
+using apache::thrift::std::shared_ptr;
using apache::thrift::TProcessor;
using apache::thrift::server::TZmqServer;
using apache::thrift::server::TZmqMultiServer;