diff options
author | Adam Midvidy <amidvidy@gmail.com> | 2015-06-17 14:29:48 -0400 |
---|---|---|
committer | Adam Midvidy <amidvidy@gmail.com> | 2015-06-18 13:09:18 -0400 |
commit | 149d8c8f83017db23b104da1f020d0a994fb79f9 (patch) | |
tree | b3de559193c25708fca27234f8d498f08d444ac9 /src/mongo/db/client.h | |
parent | dd759f777875702f9618ed9379c5379247cdb7d1 (diff) | |
download | mongo-149d8c8f83017db23b104da1f020d0a994fb79f9.tar.gz |
SERVER-18723 boost -> stdx for thread
Diffstat (limited to 'src/mongo/db/client.h')
-rw-r--r-- | src/mongo/db/client.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mongo/db/client.h b/src/mongo/db/client.h index 1368506b9ea..4f27c639b0a 100644 --- a/src/mongo/db/client.h +++ b/src/mongo/db/client.h @@ -36,13 +36,12 @@ #pragma once -#include <boost/thread/thread.hpp> - #include "mongo/db/client_basic.h" #include "mongo/db/namespace_string.h" #include "mongo/db/operation_context.h" #include "mongo/db/service_context.h" #include "mongo/platform/unordered_set.h" +#include "mongo/stdx/thread.h" #include "mongo/util/concurrency/spin_lock.h" #include "mongo/util/concurrency/threadlocal.h" @@ -133,7 +132,7 @@ namespace mongo { const std::string _desc; // OS id of the thread, which owns this client - const boost::thread::id _threadId; + const stdx::thread::id _threadId; // > 0 for things "conn", 0 otherwise const ConnectionId _connectionId; |