Skip to content

Commit b12cde1

Browse files
committed
[utilities] Add missing spaces after commas
1 parent 5fdd7f7 commit b12cde1

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

source/utilities.tex

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
\ref{variant} & Variants & \tcode{<variant>} \\ \rowsep
1818
\ref{any} & Storage for any type & \tcode{<any>} \\ \rowsep
1919
\ref{bitset} & Fixed-size sequences of bits & \tcode{<bitset>} \\ \rowsep
20-
\ref{memory} & Memory &
21-
\tcode{<cstdlib>}, \tcode{<memory>} \\ \rowsep
20+
\ref{memory} & Memory & \tcode{<cstdlib>}, \tcode{<memory>} \\ \rowsep
2221
\ref{smartptr} & Smart pointers & \tcode{<memory>} \\ \rowsep
2322
\ref{mem.res} & Memory resources & \tcode{<memory_resource>} \\ \rowsep
2423
\ref{allocator.adaptor} & Scoped allocators & \tcode{<scoped_allocator>} \\ \rowsep
@@ -2415,7 +2414,7 @@
24152414
template<class T, class U>
24162415
constexpr bool operator>=(const optional<T>&, const optional<U>&);
24172416
template<class T, @\libconcept{three_way_comparable_with}@<T> U>
2418-
constexpr compare_three_way_result_t<T,U>
2417+
constexpr compare_three_way_result_t<T, U>
24192418
operator<=>(const optional<T>&, const optional<U>&);
24202419

24212420
// \ref{optional.nullops}, comparison with \tcode{nullopt}
@@ -2437,7 +2436,7 @@
24372436
template<class T, class U> constexpr bool operator>=(const optional<T>&, const U&);
24382437
template<class T, class U> constexpr bool operator>=(const T&, const optional<U>&);
24392438
template<class T, @\libconcept{three_way_comparable_with}@<T> U>
2440-
constexpr compare_three_way_result_t<T,U>
2439+
constexpr compare_three_way_result_t<T, U>
24412440
operator<=>(const optional<T>&, const U&);
24422441

24432442
// \ref{optional.specalg}, specialized algorithms
@@ -3594,7 +3593,7 @@
35943593
\indexlibrarymember{operator<=>}{optional}%
35953594
\begin{itemdecl}
35963595
template<class T, @\libconcept{three_way_comparable_with}@<T> U>
3597-
constexpr compare_three_way_result_t<T,U>
3596+
constexpr compare_three_way_result_t<T, U>
35983597
operator<=>(const optional<T>& x, const optional<U>& y);
35993598
\end{itemdecl}
36003599

@@ -3834,7 +3833,7 @@
38343833
\indexlibrarymember{operator<=>}{optional}%
38353834
\begin{itemdecl}
38363835
template<class T, @\libconcept{three_way_comparable_with}@<T> U>
3837-
constexpr compare_three_way_result_t<T,U>
3836+
constexpr compare_three_way_result_t<T, U>
38383837
operator<=>(const optional<T>& x, const U& v);
38393838
\end{itemdecl}
38403839

@@ -6888,10 +6887,10 @@
68886887
U&& u, V&& v) noexcept;
68896888
template<class T, class Alloc, class U, class V>
68906889
constexpr auto uses_allocator_construction_args(const Alloc& alloc,
6891-
const pair<U,V>& pr) noexcept;
6890+
const pair<U, V>& pr) noexcept;
68926891
template<class T, class Alloc, class U, class V>
68936892
constexpr auto uses_allocator_construction_args(const Alloc& alloc,
6894-
pair<U,V>&& pr) noexcept;
6893+
pair<U, V>&& pr) noexcept;
68956894
template<class T, class Alloc, class... Args>
68966895
constexpr T make_obj_using_allocator(const Alloc& alloc, Args&&... args);
68976896
template<class T, class Alloc, class... Args>
@@ -7784,7 +7783,7 @@
77847783
\begin{itemdecl}
77857784
template<class T, class Alloc, class U, class V>
77867785
constexpr auto uses_allocator_construction_args(const Alloc& alloc,
7787-
const pair<U,V>& pr) noexcept;
7786+
const pair<U, V>& pr) noexcept;
77887787
\end{itemdecl}
77897788

77907789
\begin{itemdescr}
@@ -7806,7 +7805,7 @@
78067805
\begin{itemdecl}
78077806
template<class T, class Alloc, class U, class V>
78087807
constexpr auto uses_allocator_construction_args(const Alloc& alloc,
7809-
pair<U,V>&& pr) noexcept;
7808+
pair<U, V>&& pr) noexcept;
78107809
\end{itemdecl}
78117810

78127811
\begin{itemdescr}
@@ -11424,7 +11423,7 @@
1142411423

1142511424
\begin{itemdescr}
1142611425
\pnum
11427-
Letting \tcode{UP} be \tcode{unique_ptr<T,D>},
11426+
Letting \tcode{UP} be \tcode{unique_ptr<T, D>},
1142811427
the specialization \tcode{hash<UP>} is enabled\iref{unord.hash}
1142911428
if and only if \tcode{hash<typename UP::pointer>} is enabled.
1143011429
When enabled, for an object \tcode{p} of type \tcode{UP},

0 commit comments

Comments
 (0)