Converted concurrency classes to use boost::shared_ptr and boost::weak_ptr:
Wrapped all thrift code in facebook::thrift:: namespace
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664735 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lib/cpp/src/transport/TSocket.cc b/lib/cpp/src/transport/TSocket.cc
index 2161697..a1e0327 100644
--- a/lib/cpp/src/transport/TSocket.cc
+++ b/lib/cpp/src/transport/TSocket.cc
@@ -10,6 +10,8 @@
#include "transport/TSocket.h"
#include "transport/TTransportException.h"
+namespace facebook { namespace thrift { namespace transport {
+
using namespace std;
uint32_t g_socket_syscalls = 0;
@@ -230,3 +232,4 @@
perror("TSocket::setNoDelay()");
}
}
+}}} // facebook::thrift::transport