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
This commit is contained in:
Eelis van der Weegen 2015-08-13 13:57:28 +00:00 committed by Jonathan Wakely
parent 34c896978b
commit 4c80e54478
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
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>
PR 66521, Contributed by Eric Gallager

View File

@ -331,7 +331,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
void lock() { _M_impl.lock(); }
bool try_lock() { return _M_impl.try_lock(); }
void unlock() { _M_impl.try_lock(); }
void unlock() { _M_impl.unlock(); }
// Shared ownership