diff --git a/source/utilities.tex b/source/utilities.tex index 9ec1772423..3e67950a39 100644 --- a/source/utilities.tex +++ b/source/utilities.tex @@ -825,7 +825,7 @@ The defaulted move and copy constructor, respectively, of \tcode{pair} is a constexpr function if and only if all required element-wise initializations for move and copy, respectively, -would be constexpr-suitable\iref{dcl.constexpr}. +would satisfy the requirements for a constexpr function. \pnum If \tcode{(is_trivially_destructible_v \&\& is_trivially_destructible_v)} @@ -1815,7 +1815,7 @@ The defaulted move and copy constructor, respectively, of \tcode{tuple} is a constexpr function if and only if all required element-wise initializations for move and copy, respectively, -would be constexpr-suitable\iref{dcl.constexpr}. +would satisfy the requirements for a constexpr function. The defaulted move and copy constructor of \tcode{tuple<>} are constexpr functions. @@ -5900,9 +5900,9 @@ \pnum \remarks -This function is \keyword{constexpr} if and only if the +This constructor is a constexpr function if and only if the value-initialization of the alternative type $\tcode{T}_0$ -would be constexpr-suitable\iref{dcl.constexpr}. +would satisfy the requirements for a constexpr function. The exception specification is equivalent to \tcode{is_nothrow_default_constructible_v<$\tcode{T}_0$>}. \begin{note}