diff --git a/reference/tuple/apply.md b/reference/tuple/apply.md index f59d632a3f..77d6e1845f 100644 --- a/reference/tuple/apply.md +++ b/reference/tuple/apply.md @@ -7,10 +7,12 @@ ```cpp namespace std { template - constexpr decltype(auto) apply(F&& f, Tuple&& t); // C++20まで + constexpr decltype(auto) + apply(F&& f, Tuple&& t); // (1) C++20 template - constexpr decltype(auto) apply(F&& f, Tuple&& t) noexcept(see below); // C++23から + constexpr decltype(auto) + apply(F&& f, Tuple&& t) noexcept(see below); // (1) C++23 } ```