2
0
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:
William E. Kempf
2001-10-15 00:48:51 +00:00
parent 1ab320042e
commit c2e7091632
3 changed files with 8 additions and 8 deletions

View File

@@ -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)