summaryrefslogtreecommitdiff
path: root/boost/thread/pthread/condition_variable_fwd.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/thread/pthread/condition_variable_fwd.hpp')
-rw-r--r--boost/thread/pthread/condition_variable_fwd.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/boost/thread/pthread/condition_variable_fwd.hpp b/boost/thread/pthread/condition_variable_fwd.hpp
index dc471d56a0..08b1583463 100644
--- a/boost/thread/pthread/condition_variable_fwd.hpp
+++ b/boost/thread/pthread/condition_variable_fwd.hpp
@@ -128,7 +128,7 @@ namespace boost
}
bool timed_wait(
unique_lock<mutex>& m,
- xtime const& abs_time)
+ ::boost::xtime const& abs_time)
{
return timed_wait(m,system_time(abs_time));
}
@@ -194,7 +194,7 @@ namespace boost
template<typename predicate_type>
bool timed_wait(
unique_lock<mutex>& m,
- xtime const& abs_time,predicate_type pred)
+ ::boost::xtime const& abs_time,predicate_type pred)
{
return timed_wait(m,system_time(abs_time),pred);
}