diff --git a/source/utilities.tex b/source/utilities.tex index 87993d46ac..26281efeac 100644 --- a/source/utilities.tex +++ b/source/utilities.tex @@ -13580,7 +13580,7 @@ \indexlibrarymember{operator()}{bit_and<>}% \begin{itemdecl} template constexpr auto operator()(T&& t, U&& u) const - -> decltype(std::forward(t) & std::forward(u)); + -> decltype(std::forward(t) & std::forward(u)); \end{itemdecl} \begin{itemdescr} @@ -13622,7 +13622,7 @@ \indexlibrarymember{operator()}{bit_or<>}% \begin{itemdecl} template constexpr auto operator()(T&& t, U&& u) const - -> decltype(std::forward(t) | std::forward(u)); + -> decltype(std::forward(t) | std::forward(u)); \end{itemdecl} \begin{itemdescr} @@ -13664,7 +13664,7 @@ \indexlibrarymember{operator()}{bit_xor<>}% \begin{itemdecl} template constexpr auto operator()(T&& t, U&& u) const - -> decltype(std::forward(t) ^ std::forward(u)); + -> decltype(std::forward(t) ^ std::forward(u)); \end{itemdecl} \begin{itemdescr} @@ -13705,7 +13705,7 @@ \indexlibrarymember{operator()}{bit_not<>}% \begin{itemdecl} template constexpr auto operator()(T&& t) const - -> decltype(~std::forward(t)); + -> decltype(~std::forward(t)); \end{itemdecl} \begin{itemdescr}