2
0
mirror of https://github.com/boostorg/fiber.git synced 2026-02-18 14:02:18 +00:00

fix typo: bounded_queue::pop_wait_for()

This commit is contained in:
Oliver Kowalke
2013-11-28 19:45:57 +01:00
parent e1adfd666c
commit abec3a5da6
2 changed files with 1 additions and 2 deletions

View File

@@ -147,7 +147,6 @@ protecting the internal state of a mutex or condition_variable.]]
[variablelist
[[Effects:] [Suspends active fiber while immediately set to ready-state.]]
otherwise.]]
]
[member_heading algorithm..get_main_id]

View File

@@ -672,7 +672,7 @@ public:
}
template< typename Rep, typename Period >
queue_op_status pop_ait_for( value_type va,
queue_op_status pop_wait_for( value_type va,
chrono::duration< Rep, Period > const& timeout_duration)
{ return pop_wait_until( va, clock_type::now() + timeout_duration); }