summaryrefslogtreecommitdiff
path: root/cppu/source/threadpool/jobqueue.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'cppu/source/threadpool/jobqueue.hxx')
-rw-r--r--cppu/source/threadpool/jobqueue.hxx5
1 files changed, 1 insertions, 4 deletions
diff --git a/cppu/source/threadpool/jobqueue.hxx b/cppu/source/threadpool/jobqueue.hxx
index d4a26c7709cc..9dc20f3cd75e 100644
--- a/cppu/source/threadpool/jobqueue.hxx
+++ b/cppu/source/threadpool/jobqueue.hxx
@@ -20,7 +20,6 @@
#ifndef INCLUDED_CPPU_SOURCE_THREADPOOL_JOBQUEUE_HXX
#define INCLUDED_CPPU_SOURCE_THREADPOOL_JOBQUEUE_HXX
-#include <list>
#include <deque>
#include <memory>
#include <sal/types.h>
@@ -38,8 +37,6 @@ namespace cppu_threadpool
RequestFun * doRequest;
};
- typedef std::list < struct Job > JobList;
-
class DisposedCallerAdmin;
typedef std::shared_ptr<DisposedCallerAdmin> DisposedCallerAdminHolder;
@@ -62,7 +59,7 @@ namespace cppu_threadpool
private:
mutable ::osl::Mutex m_mutex;
- JobList m_lstJob;
+ std::deque < struct Job > m_lstJob;
std::deque<sal_Int64> m_lstCallstack;
sal_Int32 m_nToDo;
bool m_bSuspended;