[libcxx-commits] [libcxx] [libcxx] Implementation of P1831R1 (PR #101439)
Mark de Wever via libcxx-commits
libcxx-commits at lists.llvm.org
Sun Aug 4 03:34:40 PDT 2024
================
@@ -266,14 +293,15 @@ _LIBCPP_HIDE_FROM_ABI bool atomic_is_lock_free(const atomic<_Tp>* __o) _NOEXCEPT
// atomic_init
template <class _Tp>
-_LIBCPP_DEPRECATED_IN_CXX20 _LIBCPP_HIDE_FROM_ABI void
-atomic_init(volatile atomic<_Tp>* __o, typename atomic<_Tp>::value_type __d) _NOEXCEPT {
+_LIBCPP_HIDE_FROM_ABI void atomic_init(volatile atomic<_Tp>* __o, typename atomic<_Tp>::value_type __d) _NOEXCEPT
----------------
mordante wrote:
Why did you remove the `_LIBCPP_DEPRECATED_IN_CXX20`? That does not seem part of this paper right?
https://github.com/llvm/llvm-project/pull/101439
More information about the libcxx-commits
mailing list