diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2017-01-08 19:39:03 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2017-01-08 19:39:03 +0000 | 
| commit | aed8d94e97d1be8b4e26ce1ffb4d0547aee8ab1d (patch) | |
| tree | f4b32ab9e34cda2eead99ae084f0b02d0dab6891 /contrib/libc++/include/__mutex_base | |
| parent | 657db61c2068b2bcc0d930546402284e2c9c9abd (diff) | |
| parent | 4a2db4d30e1653093d4d8b06e8221e2f8b723507 (diff) | |
Notes
Diffstat (limited to 'contrib/libc++/include/__mutex_base')
| -rw-r--r-- | contrib/libc++/include/__mutex_base | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/contrib/libc++/include/__mutex_base b/contrib/libc++/include/__mutex_base index 38a76ac6f2ec..cce928784a46 100644 --- a/contrib/libc++/include/__mutex_base +++ b/contrib/libc++/include/__mutex_base @@ -43,7 +43,7 @@ class _LIBCPP_TYPE_VIS _LIBCPP_THREAD_SAFETY_ANNOTATION(capability("mutex")) mut  public:      _LIBCPP_INLINE_VISIBILITY  #ifndef _LIBCPP_HAS_NO_CONSTEXPR -    constexpr mutex() _NOEXCEPT _LIBCPP_DEFAULT +    constexpr mutex() _NOEXCEPT = default;  #else      mutex() _NOEXCEPT {__m_ = (__libcpp_mutex_t)_LIBCPP_MUTEX_INITIALIZER;}  #endif @@ -85,11 +85,11 @@ constexpr adopt_lock_t  adopt_lock  = adopt_lock_t();  // the mangling consistent between dialects.  #if defined(_LIBCPP_ABI_VARIADIC_LOCK_GUARD)  template <class ..._Mutexes> -class _LIBCPP_TYPE_VIS_ONLY lock_guard; +class _LIBCPP_TEMPLATE_VIS lock_guard;  #endif  template <class _Mutex> -class _LIBCPP_TYPE_VIS_ONLY _LIBCPP_THREAD_SAFETY_ANNOTATION(scoped_lockable) +class _LIBCPP_TEMPLATE_VIS _LIBCPP_THREAD_SAFETY_ANNOTATION(scoped_lockable)  #if !defined(_LIBCPP_ABI_VARIADIC_LOCK_GUARD)  lock_guard  #else @@ -118,7 +118,7 @@ private:  };  template <class _Mutex> -class _LIBCPP_TYPE_VIS_ONLY unique_lock +class _LIBCPP_TEMPLATE_VIS unique_lock  {  public:      typedef _Mutex mutex_type; @@ -300,7 +300,7 @@ class _LIBCPP_TYPE_VIS condition_variable  public:      _LIBCPP_INLINE_VISIBILITY  #ifndef _LIBCPP_HAS_NO_CONSTEXPR -    constexpr condition_variable() _NOEXCEPT _LIBCPP_DEFAULT +    constexpr condition_variable() _NOEXCEPT = default;  #else      condition_variable() _NOEXCEPT {__cv_ = (__libcpp_condvar_t)_LIBCPP_CONDVAR_INITIALIZER;}  #endif | 
