From 11bb071e91461b1f8e40b9b15ddf3b9e1a2d23d1 Mon Sep 17 00:00:00 2001 From: Billy Donahue Date: Fri, 4 Jan 2019 12:19:37 -0500 Subject: SERVER-36644 remove AtomicWord typedefs --- src/mongo/db/auth/user.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mongo/db/auth/user.h') diff --git a/src/mongo/db/auth/user.h b/src/mongo/db/auth/user.h index c77b3e551df..c96a03ed5c4 100644 --- a/src/mongo/db/auth/user.h +++ b/src/mongo/db/auth/user.h @@ -252,7 +252,7 @@ private: RestrictionDocuments _restrictions; // Indicates whether the user has been marked as invalid by the AuthorizationManager. - AtomicBool _isValid{true}; + AtomicWord _isValid{true}; }; using UserHandle = std::shared_ptr; -- cgit v1.2.1