Skip to content

Commit 99c242a

Browse files
committed
try to fix CI error
1 parent 25f494b commit 99c242a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libcxx/include/__atomic/atomic_sync.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ struct __libcpp_atomic_wait_poll_impl {
5151

5252
_LIBCPP_AVAILABILITY_SYNC
5353
_LIBCPP_HIDE_FROM_ABI bool operator()() const {
54-
auto __current_val = __cxx_atomic_load(__a_, __order_);
54+
auto __current_val = std::__cxx_atomic_load(__a_, __order_);
5555
return __poll_(__current_val);
5656
}
5757
};
@@ -71,7 +71,7 @@ struct __libcpp_atomic_wait_backoff_impl {
7171
// to potentially modify it. After it returns, `__monitor` has a value
7272
// which can be safely waited on by `std::__libcpp_atomic_wait` without any
7373
// ABA style issues.
74-
__monitor = __cxx_atomic_load(__a_, __order_);
74+
__monitor = std::__cxx_atomic_load(__a_, __order_);
7575
return __poll_(__monitor);
7676
}
7777

@@ -81,7 +81,7 @@ struct __libcpp_atomic_wait_backoff_impl {
8181
// `std::__libcpp_atomic_monitor`.
8282
// Only then we may read from `__a_`. This is the "event count" pattern.
8383
__monitor = std::__libcpp_atomic_monitor(__a_);
84-
auto __current_val = __cxx_atomic_load(__a_, __order_);
84+
auto __current_val = std::__cxx_atomic_load(__a_, __order_);
8585
return __poll_(__current_val);
8686
}
8787

0 commit comments

Comments
 (0)