More dependency check-ups
[invirt/third/libt4.git] / rpc / thr_pool.h
index 94ce237..5b95cba 100644 (file)
@@ -4,7 +4,7 @@
 #include "types.h"
 #include "fifo.h"
 
-typedef std::function<void()> job_t;
+typedef function<void()> job_t;
 
 class ThrPool {
        public:
@@ -18,7 +18,7 @@ class ThrPool {
                bool blockadd_;
 
                fifo<job_t> jobq_;
-               std::vector<std::thread> th_;
+               vector<thread> th_;
 
         void do_worker();
 };