diff options
author | ADAM David Alan Martin <adam.martin@10gen.com> | 2019-06-10 01:22:52 -0400 |
---|---|---|
committer | ADAM David Alan Martin <adam.martin@10gen.com> | 2019-06-10 01:59:44 -0400 |
commit | dd6e5dfed2c566cb5778dab7421654d310ce6480 (patch) | |
tree | 65962a27a5209ded257a5d7547bdff974a64c465 /src/mongo/db/service_context.h | |
parent | c36f9ecb91e49da7e637863889804fc4e6c6c05e (diff) | |
download | mongo-dd6e5dfed2c566cb5778dab7421654d310ce6480.tar.gz |
SERVER-39340 Remove `stdx/list.h`
Diffstat (limited to 'src/mongo/db/service_context.h')
-rw-r--r-- | src/mongo/db/service_context.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/service_context.h b/src/mongo/db/service_context.h index d3af86ac8fc..d122a32e5e3 100644 --- a/src/mongo/db/service_context.h +++ b/src/mongo/db/service_context.h @@ -31,6 +31,7 @@ #include <boost/optional.hpp> #include <functional> +#include <list> #include <memory> #include <vector> @@ -39,7 +40,6 @@ #include "mongo/db/storage/storage_engine.h" #include "mongo/platform/atomic_word.h" #include "mongo/stdx/condition_variable.h" -#include "mongo/stdx/list.h" #include "mongo/stdx/mutex.h" #include "mongo/stdx/unordered_set.h" #include "mongo/transport/service_executor.h" @@ -271,7 +271,7 @@ public: DestructorAction destructor = {}); private: - using ConstructorActionListIterator = stdx::list<ConstructorDestructorActions>::iterator; + using ConstructorActionListIterator = std::list<ConstructorDestructorActions>::iterator; ConstructorActionListIterator _iter; boost::optional<GlobalInitializerRegisterer> _registerer; }; |