From f93e4cdb371aa01ac157ce1a79e392ceb0108dad Mon Sep 17 00:00:00 2001 From: Paul Cristian Sarbu Date: Fri, 7 Mar 2025 13:45:59 +0100 Subject: utils atomic: Update link to libcxx C++20 adoption page --- src/utils/cpp/atomic.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/utils') diff --git a/src/utils/cpp/atomic.hpp b/src/utils/cpp/atomic.hpp index 179e7f7a..879c2397 100644 --- a/src/utils/cpp/atomic.hpp +++ b/src/utils/cpp/atomic.hpp @@ -26,7 +26,7 @@ // Atomic wrapper with notify/wait capabilities. // TODO(modernize): Replace any use this class by C++20's std::atomic, once // libcxx adds support for notify_*() and wait(). -// [https://libcxx.llvm.org/docs/Cxx2aStatus.html] +// [https://libcxx.llvm.org/Status/Cxx20.html] template class atomic { // NOLINT(readability-identifier-naming) public: @@ -97,7 +97,7 @@ class atomic { // NOLINT(readability-identifier-naming) // Atomic shared_pointer with notify/wait capabilities. // TODO(modernize): Replace any use this class by C++20's // std::atomic>, once libcxx adds support for it. -// [https://libcxx.llvm.org/docs/Cxx2aStatus.html] +// [https://libcxx.llvm.org/Status/Cxx20.html] template class atomic_shared_ptr { // NOLINT(readability-identifier-naming) using ptr_t = std::shared_ptr; -- cgit v1.2.3