2015-08-13 Eelis van der Weegen <eelis@eelis.net>
authorredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 13 Aug 2015 13:57:28 +0000 (13:57 +0000)
committerredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 13 Aug 2015 13:57:28 +0000 (13:57 +0000)
* include/std/shared_mutex (shared_mutex::unlock()): Fix typo.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@226862 138bc75d-0d04-0410-961f-82ee72b054a4

libstdc++-v3/ChangeLog
libstdc++-v3/include/std/shared_mutex

index f92a67d..3a7cc7e 100644 (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
index 0a893ee..ae5f199 100644 (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