summaryrefslogtreecommitdiff
path: root/boost/fiber/algo/round_robin.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/fiber/algo/round_robin.hpp')
-rw-r--r--boost/fiber/algo/round_robin.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/boost/fiber/algo/round_robin.hpp b/boost/fiber/algo/round_robin.hpp
index 038b424529..e384982567 100644
--- a/boost/fiber/algo/round_robin.hpp
+++ b/boost/fiber/algo/round_robin.hpp
@@ -32,9 +32,9 @@ namespace algo {
class BOOST_FIBERS_DECL round_robin : public algorithm {
private:
- typedef scheduler::ready_queue_t rqueue_t;
+ typedef scheduler::ready_queue_type rqueue_type;
- rqueue_t rqueue_{};
+ rqueue_type rqueue_{};
std::mutex mtx_{};
std::condition_variable cnd_{};
bool flag_{ false };