diff options
Diffstat (limited to 'contrib/libc++/include/atomic')
-rw-r--r-- | contrib/libc++/include/atomic | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libc++/include/atomic b/contrib/libc++/include/atomic index 6a200eb..6dffdb2 100644 --- a/contrib/libc++/include/atomic +++ b/contrib/libc++/include/atomic @@ -555,7 +555,7 @@ kill_dependency(_Tp __y) _NOEXCEPT template <class _Tp, bool = is_integral<_Tp>::value && !is_same<_Tp, bool>::value> struct __atomic_base // false { - _Atomic(_Tp) __a_; + mutable _Atomic(_Tp) __a_; _LIBCPP_INLINE_VISIBILITY bool is_lock_free() const volatile _NOEXCEPT |