Commit 4c80e544 by Eelis van der Weegen Committed by Jonathan Wakely

shared_mutex (shared_mutex::unlock()): Fix typo.

2015-08-13  Eelis van der Weegen  <eelis@eelis.net>

	* include/std/shared_mutex (shared_mutex::unlock()): Fix typo.

From-SVN: r226862
parent 34c89697
2015-08-13 Eelis van der Weegen <eelis@eelis.net>
* include/std/shared_mutex (shared_mutex::unlock()): Fix typo.
2015-08-12 Caroline Tice <cmtice@google.com> 2015-08-12 Caroline Tice <cmtice@google.com>
PR 66521, Contributed by Eric Gallager PR 66521, Contributed by Eric Gallager
......
...@@ -331,7 +331,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION ...@@ -331,7 +331,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
void lock() { _M_impl.lock(); } void lock() { _M_impl.lock(); }
bool try_lock() { return _M_impl.try_lock(); } bool try_lock() { return _M_impl.try_lock(); }
void unlock() { _M_impl.try_lock(); } void unlock() { _M_impl.unlock(); }
// Shared ownership // Shared ownership
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment