summaryrefslogtreecommitdiff
path: root/src/mongo/executor/thread_pool_task_executor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/executor/thread_pool_task_executor.h')
-rw-r--r--src/mongo/executor/thread_pool_task_executor.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/executor/thread_pool_task_executor.h b/src/mongo/executor/thread_pool_task_executor.h
index 8285785d748..218987383cb 100644
--- a/src/mongo/executor/thread_pool_task_executor.h
+++ b/src/mongo/executor/thread_pool_task_executor.h
@@ -29,11 +29,11 @@
#pragma once
+#include <list>
#include <memory>
#include "mongo/executor/task_executor.h"
#include "mongo/stdx/condition_variable.h"
-#include "mongo/stdx/list.h"
#include "mongo/stdx/mutex.h"
#include "mongo/stdx/thread.h"
#include "mongo/transport/baton.h"
@@ -102,8 +102,8 @@ public:
private:
class CallbackState;
class EventState;
- using WorkQueue = stdx::list<std::shared_ptr<CallbackState>>;
- using EventList = stdx::list<std::shared_ptr<EventState>>;
+ using WorkQueue = std::list<std::shared_ptr<CallbackState>>;
+ using EventList = std::list<std::shared_ptr<EventState>>;
/**
* Representation of the stage of life of a thread pool.