Skip to content

Commit c2ffe2c

Browse files
committed
[utilities] Fix inconsistent indentation for declarations with requires clauses.
1 parent eb17fbe commit c2ffe2c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

source/utilities.tex

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -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
};
@@ -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)