diff --git a/source/meta.tex b/source/meta.tex index 95d2635ed3..e685b575ab 100644 --- a/source/meta.tex +++ b/source/meta.tex @@ -1712,16 +1712,22 @@ \indexlibraryglobal{add_const}% \tcode{template\br struct add_const;} & - If \tcode{T} is a reference, function, or top-level const-qualified - type, then \tcode{type} denotes \tcode{T}, otherwise - \tcode{T const}. \\ \rowsep + The member typedef \tcode{type} denotes \tcode{const T}. +\begin{tailnote} +\keyword{const} has no effect when \tcode{T} is a reference, function, or +top-level const-qualified type. +\end{tailnote} +\\ \rowsep \indexlibraryglobal{add_volatile}% \tcode{template\br struct add_volatile;} & - If \tcode{T} is a reference, function, or top-level volatile-qualified - type, then \tcode{type} denotes \tcode{T}, otherwise - \tcode{T volatile}. \\ \rowsep + The member typedef \tcode{type} denotes \tcode{volatile T}. +\begin{tailnote} +\keyword{volatile} has no effect when \tcode{T} is a reference, function, or +top-level volatile-qualified type. +\end{tailnote} +\\ \rowsep \indexlibraryglobal{add_cv}% \tcode{template\br