Skip to content

Commit 132a746

Browse files
authored
Update link to c++ atomic ordering docs (#264)
I'm not sure if this is actually desirable. For one thing, the link I used isn't locked to c++20 exactly. But it is the same page the [std lib](https://doc.rust-lang.org/std/sync/atomic/enum.Ordering.html) links to so that may be good for something. I'm also not sure if other references to `C++11` should be updated or removed. Basically, I feel like _something_ should change here but I'm not really sure what :-\
1 parent 8551afb commit 132a746

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/atomics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ received some bugfixes since then.)
1313
Trying to fully explain the model in this book is fairly hopeless. It's defined
1414
in terms of madness-inducing causality graphs that require a full book to
1515
properly understand in a practical way. If you want all the nitty-gritty
16-
details, you should check out the [C++20 draft specification (Section 31)][C++-model].
16+
details, you should check out the [C++ specification][C++-model].
1717
Still, we'll try to cover the basics and some of the problems Rust developers
1818
face.
1919

@@ -256,4 +256,4 @@ relaxed operations can be cheaper on weakly-ordered platforms.
256256

257257

258258
[C11-busted]: http://plv.mpi-sws.org/c11comp/popl15.pdf
259-
[C++-model]: http://eel.is/c++draft/atomics.order
259+
[C++-model]: https://en.cppreference.com/w/cpp/atomic/memory_order

0 commit comments

Comments
 (0)