THRIFT-270: change cpp namespaces from facebook::thrift to apache::thrift
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@739644 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/test/DenseProtoTest.cpp b/test/DenseProtoTest.cpp
index 68b5df9..d65a6c1 100644
--- a/test/DenseProtoTest.cpp
+++ b/test/DenseProtoTest.cpp
@@ -41,8 +41,8 @@
using std::endl;
using boost::shared_ptr;
using namespace thrift::test::debug;
- using namespace facebook::thrift::transport;
- using namespace facebook::thrift::protocol;
+ using namespace apache::thrift::transport;
+ using namespace apache::thrift::protocol;
OneOfEach ooe;
@@ -56,7 +56,7 @@
ooe.some_characters = "Debug THIS!";
ooe.zomg_unicode = "\xd7\n\a\t";
- //cout << facebook::thrift::ThriftDebugString(ooe) << endl << endl;
+ //cout << apache::thrift::ThriftDebugString(ooe) << endl << endl;
Nesting n;
@@ -72,7 +72,7 @@
n.my_bonk.type = 31337;
n.my_bonk.message = "I am a bonk... xor!";
- //cout << facebook::thrift::ThriftDebugString(n) << endl << endl;
+ //cout << apache::thrift::ThriftDebugString(n) << endl << endl;
HolyMoley hm;
@@ -115,7 +115,7 @@
stage2.back().message = "nevermore";
hm.bonks["poe"] = stage2;
- //cout << facebook::thrift::ThriftDebugString(hm) << endl << endl;
+ //cout << apache::thrift::ThriftDebugString(hm) << endl << endl;
shared_ptr<TMemoryBuffer> buffer(new TMemoryBuffer());
shared_ptr<TDenseProtocol> proto(new TDenseProtocol(buffer));