Skip to content

Commit 23906d9

Browse files
committed
[utilities] Fix inconsistent indentation for declarations with requires clauses.
1 parent 0c1c2cd commit 23906d9

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

source/utilities.tex

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -7093,9 +7093,9 @@
70937093
template<class T1, class D1, class T2, class D2>
70947094
requires @\libconcept{three_way_comparable_with}@<typename unique_ptr<T1, D1>::pointer,
70957095
typename unique_ptr<T2, D2>::pointer>
7096-
compare_three_way_result_t<typename unique_ptr<T1, D1>::pointer,
7097-
typename unique_ptr<T2, D2>::pointer>
7098-
operator<=>(const unique_ptr<T1, D1>& x, const unique_ptr<T2, D2>& y);
7096+
compare_three_way_result_t<typename unique_ptr<T1, D1>::pointer,
7097+
typename unique_ptr<T2, D2>::pointer>
7098+
operator<=>(const unique_ptr<T1, D1>& x, const unique_ptr<T2, D2>& y);
70997099

71007100
template<class T, class D>
71017101
bool operator==(const unique_ptr<T, D>& x, nullptr_t) noexcept;
@@ -7117,8 +7117,8 @@
71177117
bool operator>=(nullptr_t, const unique_ptr<T, D>& y);
71187118
template<class T, class D>
71197119
requires @\libconcept{three_way_comparable}@<typename unique_ptr<T, D>::pointer>
7120-
compare_three_way_result_t<typename unique_ptr<T, D>::pointer>
7121-
operator<=>(const unique_ptr<T, D>& x, nullptr_t);
7120+
compare_three_way_result_t<typename unique_ptr<T, D>::pointer>
7121+
operator<=>(const unique_ptr<T, D>& x, nullptr_t);
71227122

71237123
template<class E, class T, class Y, class D>
71247124
basic_ostream<E, T>& operator<<(basic_ostream<E, T>& os, const unique_ptr<Y, D>& p);
@@ -9521,9 +9521,9 @@
95219521
template<class T1, class D1, class T2, class D2>
95229522
requires @\libconcept{three_way_comparable_with}@<typename unique_ptr<T1, D1>::pointer,
95239523
typename unique_ptr<T2, D2>::pointer>
9524-
compare_three_way_result_t<typename unique_ptr<T1, D1>::pointer,
9525-
typename unique_ptr<T2, D2>::pointer>
9526-
operator<=>(const unique_ptr<T1, D1>& x, const unique_ptr<T2, D2>& y);
9524+
compare_three_way_result_t<typename unique_ptr<T1, D1>::pointer,
9525+
typename unique_ptr<T2, D2>::pointer>
9526+
operator<=>(const unique_ptr<T1, D1>& x, const unique_ptr<T2, D2>& y);
95279527
\end{itemdecl}
95289528

95299529
\begin{itemdescr}
@@ -9620,8 +9620,8 @@
96209620
\begin{itemdecl}
96219621
template<class T, class D>
96229622
requires @\libconcept{three_way_comparable}@<typename unique_ptr<T, D>::pointer>
9623-
compare_three_way_result_t<typename unique_ptr<T, D>::pointer>
9624-
operator<=>(const unique_ptr<T, D>& x, nullptr_t);
9623+
compare_three_way_result_t<typename unique_ptr<T, D>::pointer>
9624+
operator<=>(const unique_ptr<T, D>& x, nullptr_t);
96259625
\end{itemdecl}
96269626

96279627
\begin{itemdescr}
@@ -14121,7 +14121,7 @@
1412114121
struct compare_three_way {
1412214122
template<class T, class U>
1412314123
requires @\libconcept{three_way_comparable_with}@<T, U> || @\placeholdernc{BUILTIN-PTR-THREE-WAY}@(T, U)
14124-
constexpr auto operator()(T&& t, U&& u) const;
14124+
constexpr auto operator()(T&& t, U&& u) const;
1412514125

1412614126
using is_transparent = @\unspec@;
1412714127
};
@@ -14130,7 +14130,7 @@
1413014130
\begin{itemdecl}
1413114131
template<class T, class U>
1413214132
requires @\libconcept{three_way_comparable_with}@<T, U> || @\placeholdernc{BUILTIN-PTR-THREE-WAY}@(T, U)
14133-
constexpr auto operator()(T&& t, U&& u) const;
14133+
constexpr auto operator()(T&& t, U&& u) const;
1413414134
\end{itemdecl}
1413514135

1413614136
\begin{itemdescr}
@@ -14174,7 +14174,7 @@
1417414174
struct ranges::equal_to {
1417514175
template<class T, class U>
1417614176
requires equality_comparable_with<T, U> || @\placeholdernc{BUILTIN-PTR-CMP}@(T, ==, U)
14177-
constexpr bool operator()(T&& t, U&& u) const;
14177+
constexpr bool operator()(T&& t, U&& u) const;
1417814178

1417914179
using is_transparent = @\unspecnc@;
1418014180
};
@@ -14209,7 +14209,7 @@
1420914209
struct ranges::not_equal_to {
1421014210
template<class T, class U>
1421114211
requires equality_comparable_with<T, U> || @\placeholdernc{BUILTIN-PTR-CMP}@(T, ==, U)
14212-
constexpr bool operator()(T&& t, U&& u) const;
14212+
constexpr bool operator()(T&& t, U&& u) const;
1421314213

1421414214
using is_transparent = @\unspecnc@;
1421514215
};
@@ -14228,7 +14228,7 @@
1422814228
struct ranges::greater {
1422914229
template<class T, class U>
1423014230
requires @\libconcept{totally_ordered_with}@<T, U> || @\placeholdernc{BUILTIN-PTR-CMP}@(U, <, T)
14231-
constexpr bool operator()(T&& t, U&& u) const;
14231+
constexpr bool operator()(T&& t, U&& u) const;
1423214232

1423314233
using is_transparent = @\unspecnc@;
1423414234
};
@@ -14247,7 +14247,7 @@
1424714247
struct ranges::less {
1424814248
template<class T, class U>
1424914249
requires @\libconcept{totally_ordered_with}@<T, U> || @\placeholdernc{BUILTIN-PTR-CMP}@(T, <, U)
14250-
constexpr bool operator()(T&& t, U&& u) const;
14250+
constexpr bool operator()(T&& t, U&& u) const;
1425114251

1425214252
using is_transparent = @\unspecnc@;
1425314253
};
@@ -14288,7 +14288,7 @@
1428814288
struct ranges::greater_equal {
1428914289
template<class T, class U>
1429014290
requires @\libconcept{totally_ordered_with}@<T, U> || @\placeholdernc{BUILTIN-PTR-CMP}@(T, <, U)
14291-
constexpr bool operator()(T&& t, U&& u) const;
14291+
constexpr bool operator()(T&& t, U&& u) const;
1429214292

1429314293
using is_transparent = @\unspecnc@;
1429414294
};
@@ -14307,7 +14307,7 @@
1430714307
struct ranges::less_equal {
1430814308
template<class T, class U>
1430914309
requires @\libconcept{totally_ordered_with}@<T, U> || @\placeholdernc{BUILTIN-PTR-CMP}@(U, <, T)
14310-
constexpr bool operator()(T&& t, U&& u) const;
14310+
constexpr bool operator()(T&& t, U&& u) const;
1431114311

1431214312
using is_transparent = @\unspecnc@;
1431314313
};

0 commit comments

Comments
 (0)