summaryrefslogtreecommitdiff
path: root/src/mongo/tools
diff options
context:
space:
mode:
authorAdam Midvidy <amidvidy@gmail.com>2015-06-17 14:29:48 -0400
committerAdam Midvidy <amidvidy@gmail.com>2015-06-18 13:09:18 -0400
commit149d8c8f83017db23b104da1f020d0a994fb79f9 (patch)
treeb3de559193c25708fca27234f8d498f08d444ac9 /src/mongo/tools
parentdd759f777875702f9618ed9379c5379247cdb7d1 (diff)
downloadmongo-149d8c8f83017db23b104da1f020d0a994fb79f9.tar.gz
SERVER-18723 boost -> stdx for thread
Diffstat (limited to 'src/mongo/tools')
-rw-r--r--src/mongo/tools/bridge.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/tools/bridge.cpp b/src/mongo/tools/bridge.cpp
index 2644ccc8eaf..2114dbc72c3 100644
--- a/src/mongo/tools/bridge.cpp
+++ b/src/mongo/tools/bridge.cpp
@@ -30,19 +30,19 @@
#include "mongo/platform/basic.h"
-#include <boost/thread.hpp>
#include <iostream>
#include <signal.h>
#include "mongo/base/initializer.h"
#include "mongo/client/dbclientinterface.h"
#include "mongo/db/dbmessage.h"
+#include "mongo/stdx/thread.h"
#include "mongo/tools/mongobridge_options.h"
#include "mongo/util/log.h"
#include "mongo/util/net/listen.h"
#include "mongo/util/net/message.h"
-#include "mongo/util/stacktrace.h"
#include "mongo/util/quick_exit.h"
+#include "mongo/util/stacktrace.h"
#include "mongo/util/text.h"
#include "mongo/util/timer.h"
@@ -139,7 +139,7 @@ public:
virtual void acceptedMP(MessagingPort *mp) {
ports.insert( mp );
Forwarder f( *mp );
- boost::thread t( f );
+ stdx::thread t( f );
}
};