atomic_ref -- atomic, atomic_ref : C++23 拡張浮動小数点数型に対応 #1022

1 · cpprefjp · March 2, 2023, 10:33 a.m.
diff --git a/reference/atomic/atomic_ref.md b/reference/atomic/atomic_ref.md index c9359034f..2af2f3bd4 100644 --- a/reference/atomic/atomic_ref.md +++ b/reference/atomic/atomic_ref.md @@ -6,11 +6,11 @@ ```cpp namespace std { - template<class T> struct atomic_ref; + template<class T> struct atomic_ref; // (1) C++20 - template<> struct atomic_ref<integral>; - template<> struct atomic_ref<floating-point>; - template<class T> struct atomic_ref<T*>; + template<> struct atomic_re...