mirror of
https://github.com/boostorg/thread.git
synced 2026-01-28 07:42:12 +00:00
Fixed reported warnings. Fixed once bug with void* and function pointer conversion.
[SVN r11385]
This commit is contained in:
@@ -199,7 +199,7 @@ void mutex::do_unlock()
|
||||
assert(res == 0);
|
||||
}
|
||||
|
||||
void mutex::do_lock(cv_state& state)
|
||||
void mutex::do_lock(cv_state&)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -248,7 +248,7 @@ void try_mutex::do_unlock()
|
||||
assert(res == 0);
|
||||
}
|
||||
|
||||
void try_mutex::do_lock(cv_state& state)
|
||||
void try_mutex::do_lock(cv_state&)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -367,7 +367,7 @@ void timed_mutex::do_unlock()
|
||||
assert(res == 0);
|
||||
}
|
||||
|
||||
void timed_mutex::do_lock(cv_state& state)
|
||||
void timed_mutex::do_lock(cv_state&)
|
||||
{
|
||||
int res = 0;
|
||||
while (m_locked)
|
||||
|
||||
Reference in New Issue
Block a user