summaryrefslogtreecommitdiff
path: root/boost/thread/latch.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/thread/latch.hpp')
-rw-r--r--boost/thread/latch.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/boost/thread/latch.hpp b/boost/thread/latch.hpp
index 6caf521910..8fa9d963de 100644
--- a/boost/thread/latch.hpp
+++ b/boost/thread/latch.hpp
@@ -27,7 +27,7 @@ namespace boost
/// Effect: Decrement the count. Unlocks the lock and notify anyone waiting if we reached zero.
/// Returns: true if count_ reached the value 0.
/// @ThreadSafe ensured by the @c lk parameter
- bool count_down(unique_lock<mutex> &lk)
+ bool count_down(unique_lock<mutex> &)
/// pre_condition (count_ > 0)
{
BOOST_ASSERT(count_ > 0);