From: Oliver.Kowalke_at_[hidden]
Date: 2005-11-21 04:33:09


Hello,
the documentation (http://www.boost.org/doc/html/condition.html) of
class condition contains a mistake:

instead of
 
template<typename ScopedLock, typename Pred>
bool timed_wait <http://www.boost.org/doc/html/condition.html>
(ScopedLock&, Pred);

it should be

template<typename ScopedLock, typename Pred>
bool timed_wait <http://www.boost.org/doc/html/condition.html>
(ScopedLock&, const boost::xtime
<http://www.boost.org/doc/html/xtime.html> &
 , Pred);

so long,
Oliver