diff options
author | Billy Donahue <billy.donahue@mongodb.com> | 2019-01-04 12:19:37 -0500 |
---|---|---|
committer | Billy Donahue <billy.donahue@mongodb.com> | 2019-01-07 12:08:23 -0500 |
commit | 11bb071e91461b1f8e40b9b15ddf3b9e1a2d23d1 (patch) | |
tree | 7037865f9bf4445fb3295ca7ce72f4182f012554 /src/mongo/db/service_context.h | |
parent | 6a0a21214dd96663c899cb8f2562d6121351ed3c (diff) | |
download | mongo-11bb071e91461b1f8e40b9b15ddf3b9e1a2d23d1.tar.gz |
SERVER-36644 remove AtomicWord typedefs
Diffstat (limited to 'src/mongo/db/service_context.h')
-rw-r--r-- | src/mongo/db/service_context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/service_context.h b/src/mongo/db/service_context.h index 97b4de476c1..32f2351444c 100644 --- a/src/mongo/db/service_context.h +++ b/src/mongo/db/service_context.h @@ -583,7 +583,7 @@ private: std::vector<KillOpListenerInterface*> _killOpListeners; // Counter for assigning operation ids. - AtomicUInt32 _nextOpId{1}; + AtomicWord<unsigned> _nextOpId{1}; bool _startupComplete = false; stdx::condition_variable _startupCompleteCondVar; |