diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2023-02-11 12:38:04 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2023-02-11 12:38:11 +0000 | 
| commit | e3b557809604d036af6e00c60f012c2025b59a5e (patch) | |
| tree | 8a11ba2269a3b669601e2fd41145b174008f4da8 /libcxx/include/__mutex_base | |
| parent | 08e8dd7b9db7bb4a9de26d44c1cbfd24e869c014 (diff) | |
Diffstat (limited to 'libcxx/include/__mutex_base')
| -rw-r--r-- | libcxx/include/__mutex_base | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/libcxx/include/__mutex_base b/libcxx/include/__mutex_base index ac0d090b7d19..82d9fa6ecbac 100644 --- a/libcxx/include/__mutex_base +++ b/libcxx/include/__mutex_base @@ -103,6 +103,7 @@ private:      lock_guard(lock_guard const&) = delete;      lock_guard& operator=(lock_guard const&) = delete;  }; +_LIBCPP_CTAD_SUPPORTED_FOR_TYPE(lock_guard);  template <class _Mutex>  class _LIBCPP_TEMPLATE_VIS unique_lock @@ -195,6 +196,7 @@ public:      _LIBCPP_INLINE_VISIBILITY      mutex_type* mutex() const _NOEXCEPT {return __m_;}  }; +_LIBCPP_CTAD_SUPPORTED_FOR_TYPE(unique_lock);  template <class _Mutex>  void | 
