summaryrefslogtreecommitdiff
path: root/src/mongo/executor/connection_pool_tl.h
diff options
context:
space:
mode:
authorBilly Donahue <billy.donahue@mongodb.com>2019-01-04 12:19:37 -0500
committerBilly Donahue <billy.donahue@mongodb.com>2019-01-07 12:08:23 -0500
commit11bb071e91461b1f8e40b9b15ddf3b9e1a2d23d1 (patch)
tree7037865f9bf4445fb3295ca7ce72f4182f012554 /src/mongo/executor/connection_pool_tl.h
parent6a0a21214dd96663c899cb8f2562d6121351ed3c (diff)
downloadmongo-11bb071e91461b1f8e40b9b15ddf3b9e1a2d23d1.tar.gz
SERVER-36644 remove AtomicWord typedefs
Diffstat (limited to 'src/mongo/executor/connection_pool_tl.h')
-rw-r--r--src/mongo/executor/connection_pool_tl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/executor/connection_pool_tl.h b/src/mongo/executor/connection_pool_tl.h
index 50e63851dfe..e97dda4c44e 100644
--- a/src/mongo/executor/connection_pool_tl.h
+++ b/src/mongo/executor/connection_pool_tl.h
@@ -71,7 +71,7 @@ private:
std::unique_ptr<NetworkConnectionHook> _onConnectHook;
mutable stdx::mutex _mutex;
- AtomicBool _inShutdown{false};
+ AtomicWord<bool> _inShutdown{false};
stdx::unordered_set<Type*> _collars;
};