summaryrefslogtreecommitdiff
path: root/src/mongo/db/service_context.cpp
diff options
context:
space:
mode:
authorADAM David Alan Martin <adam.martin@10gen.com>2019-06-10 01:22:52 -0400
committerADAM David Alan Martin <adam.martin@10gen.com>2019-06-10 01:59:44 -0400
commitdd6e5dfed2c566cb5778dab7421654d310ce6480 (patch)
tree65962a27a5209ded257a5d7547bdff974a64c465 /src/mongo/db/service_context.cpp
parentc36f9ecb91e49da7e637863889804fc4e6c6c05e (diff)
downloadmongo-dd6e5dfed2c566cb5778dab7421654d310ce6480.tar.gz
SERVER-39340 Remove `stdx/list.h`
Diffstat (limited to 'src/mongo/db/service_context.cpp')
-rw-r--r--src/mongo/db/service_context.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/service_context.cpp b/src/mongo/db/service_context.cpp
index d86176e0c03..350e9eae02e 100644
--- a/src/mongo/db/service_context.cpp
+++ b/src/mongo/db/service_context.cpp
@@ -33,6 +33,7 @@
#include "mongo/db/service_context.h"
+#include <list>
#include <memory>
#include "mongo/base/init.h"
@@ -43,7 +44,6 @@
#include "mongo/db/op_observer.h"
#include "mongo/db/operation_context.h"
#include "mongo/db/storage/recovery_unit_noop.h"
-#include "mongo/stdx/list.h"
#include "mongo/transport/service_entry_point.h"
#include "mongo/transport/session.h"
#include "mongo/transport/transport_layer.h"
@@ -56,7 +56,7 @@
namespace mongo {
namespace {
-using ConstructorActionList = stdx::list<ServiceContext::ConstructorDestructorActions>;
+using ConstructorActionList = std::list<ServiceContext::ConstructorDestructorActions>;
ServiceContext* globalServiceContext = nullptr;