Skip to content

Commit 1b0ed8d

Browse files
authored
[logical.operations] Fix indentation (#9032)
1 parent aa32df4 commit 1b0ed8d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

source/utilities.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13445,7 +13445,7 @@
1344513445
\indexlibrarymember{operator()}{logical_and<>}%
1344613446
\begin{itemdecl}
1344713447
template<class T, class U> constexpr auto operator()(T&& t, U&& u) const
13448-
-> decltype(std::forward<T>(t) && std::forward<U>(u));
13448+
-> decltype(std::forward<T>(t) && std::forward<U>(u));
1344913449
\end{itemdecl}
1345013450

1345113451
\begin{itemdescr}
@@ -13487,7 +13487,7 @@
1348713487
\indexlibrarymember{operator()}{logical_or<>}%
1348813488
\begin{itemdecl}
1348913489
template<class T, class U> constexpr auto operator()(T&& t, U&& u) const
13490-
-> decltype(std::forward<T>(t) || std::forward<U>(u));
13490+
-> decltype(std::forward<T>(t) || std::forward<U>(u));
1349113491
\end{itemdecl}
1349213492

1349313493
\begin{itemdescr}
@@ -13529,7 +13529,7 @@
1352913529
\indexlibrarymember{operator()}{logical_not<>}%
1353013530
\begin{itemdecl}
1353113531
template<class T> constexpr auto operator()(T&& t) const
13532-
-> decltype(!std::forward<T>(t));
13532+
-> decltype(!std::forward<T>(t));
1353313533
\end{itemdecl}
1353413534

1353513535
\begin{itemdescr}

0 commit comments

Comments
 (0)