File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ struct __libcpp_atomic_wait_poll_impl {
51
51
52
52
_LIBCPP_AVAILABILITY_SYNC
53
53
_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_);
55
55
return __poll_ (__current_val);
56
56
}
57
57
};
@@ -71,7 +71,7 @@ struct __libcpp_atomic_wait_backoff_impl {
71
71
// to potentially modify it. After it returns, `__monitor` has a value
72
72
// which can be safely waited on by `std::__libcpp_atomic_wait` without any
73
73
// ABA style issues.
74
- __monitor = __cxx_atomic_load (__a_, __order_);
74
+ __monitor = std:: __cxx_atomic_load (__a_, __order_);
75
75
return __poll_ (__monitor);
76
76
}
77
77
@@ -81,7 +81,7 @@ struct __libcpp_atomic_wait_backoff_impl {
81
81
// `std::__libcpp_atomic_monitor`.
82
82
// Only then we may read from `__a_`. This is the "event count" pattern.
83
83
__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_);
85
85
return __poll_ (__current_val);
86
86
}
87
87
You can’t perform that action at this time.
0 commit comments