Skip to content

Commit aced309

Browse files
committed
CI
1 parent e212e69 commit aced309

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/include/__atomic/atomic_sync.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ _LIBCPP_HIDE_FROM_ABI void __cxx_atomic_notify_all(__cxx_atomic_impl<_Tp> const
123123
template <class _Tp>
124124
_LIBCPP_HIDE_FROM_ABI void __cxx_atomic_notify_one(__cxx_atomic_impl<_Tp> const volatile*) {}
125125
template <class _Atp, class _Poll>
126-
_LIBCPP_HIDE_FROM_ABI void __cxx_atomic_wait_fn(_Atp*, _Poll&& __poll, memory_order __order) {
126+
_LIBCPP_HIDE_FROM_ABI void __cxx_atomic_wait_fn(_Atp* __a, _Poll&& __poll, memory_order __order) {
127127
__libcpp_atomic_wait_poll_impl<_Atp, __decay_t<_Poll> > __poll_fn = {__a, __poll, __order};
128128
(void)std::__libcpp_thread_poll_with_backoff(__poll_fn, __spinning_backoff_policy());
129129
}

0 commit comments

Comments
 (0)