Skip to content

Commit 2cecc4d

Browse files
committed
Remove awkward \linebreaks.
1 parent c273249 commit 2cecc4d

File tree

8 files changed

+63
-64
lines changed

8 files changed

+63
-64
lines changed

source/algorithms.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -5583,7 +5583,7 @@
55835583
\tcode{invoke(op, invoke(proj, *(first1 + (i - result))))}
55845584
for unary transforms defined in namespace \tcode{ranges};
55855585
\item
5586-
\tcode{invoke(binary_op, invoke(proj1, *(first1 + (i - result))), invoke(proj2,\linebreak *(first2 + (i - result))))}
5586+
\tcode{invoke(binary_op, invoke(proj1, *(first1 + (i - result))), invoke(proj2, *(first2 + (i - result))))}
55875587
for binary transforms defined in namespace \tcode{ranges}.
55885588
\end{itemize}
55895589
\end{itemize}

source/containers.tex

+24-25
Original file line numberDiff line numberDiff line change
@@ -2372,8 +2372,7 @@
23722372
Assigns \tcode{nh.ptr_} to \tcode{ptr_}.
23732373
\item
23742374
If \tcode{!alloc\textunderscore} or \tcode{ator_traits::propagate_on_container_move_assignment::value}
2375-
is \tcode{true}, \linebreak
2376-
move assigns \tcode{nh.alloc_} to \tcode{alloc_}.
2375+
is \tcode{true}, move assigns \tcode{nh.alloc_} to \tcode{alloc_}.
23772376
\item
23782377
Assigns
23792378
\keyword{nullptr} to \tcode{nh.ptr_} and assigns \tcode{nullopt} to
@@ -7391,14 +7390,14 @@
73917390
\pnum
73927391
\expects
73937392
\tcode{T} is \oldconcept{EmplaceConstructible} into \tcode{forward_list}
7394-
from \tcode{std::forward<Args>(\linebreak args)...}.
7393+
from \tcode{std::forward<Args>(args)...}.
73957394
\tcode{position} is \tcode{before_begin()} or is a dereferenceable
73967395
iterator in the range \range{begin()}{end()}.
73977396

73987397
\pnum
73997398
\effects
74007399
Inserts an object of type \tcode{value_type} direct-non-list-initialized with
7401-
\tcode{std::forward<Args>(\linebreak args)...} after \tcode{position}.
7400+
\tcode{std::forward<Args>(args)...} after \tcode{position}.
74027401

74037402
\pnum
74047403
\returns
@@ -9417,7 +9416,7 @@
94179416
\pnum
94189417
The expression
94199418
\tcode{\exposid{is-vector-bool-reference}<T>} is \tcode{true}
9420-
if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::\linebreak{}reference}
9419+
if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::reference}
94219420
for some type \tcode{Alloc} and
94229421
\tcode{vector<bool, Alloc>} is not a program-defined specialization.
94239422
\end{itemdescr}
@@ -10810,7 +10809,7 @@
1081010809
Otherwise, let \tcode{r} be \tcode{equal_range(k)}.
1081110810
Constructs an object \tcode{u} of type \tcode{value_type} with
1081210811
\tcode{piecewise_construct, forward_as_tuple(std::forward<K>(k)),
10813-
forward_as_tuple(std::forward<Args>(args)...)}.\linebreak
10812+
forward_as_tuple(std::forward<Args>(args)...)}.
1081410813
If \tcode{equal_range(u.first) == r} is \tcode{false},
1081510814
the behavior is undefined.
1081610815
Inserts \tcode{u} into \tcode{*this}.
@@ -16267,7 +16266,7 @@
1626716266
\pnum
1626816267
\effects
1626916268
Equivalent to \tcode{flat_map(s, key_cont, mapped_cont)} and
16270-
\tcode{flat_map(s, key_cont, \linebreak{}mapped_cont, comp)}, respectively,
16269+
\tcode{flat_map(s, key_cont, mapped_cont, comp)}, respectively,
1627116270
except that \tcode{\exposid{c}.keys} and \tcode{\exposid{c}.values} are constructed
1627216271
with uses-allocator construction\iref{allocator.uses.construction}.
1627316272

@@ -16450,7 +16449,7 @@
1645016449
\pnum
1645116450
\effects
1645216451
Initializes an object \tcode{t} of type \tcode{pair<key_type, mapped_type>}
16453-
with \tcode{std::forward<Args>(\linebreak args)...};
16452+
with \tcode{std::forward<Args>(args)...};
1645416453
if the map already contains an element
1645516454
whose key is equivalent to \tcode{t.first},
1645616455
\tcode{*this} is unchanged.
@@ -16727,7 +16726,7 @@
1672716726
\effects
1672816727
If the map already contains an element \tcode{e}
1672916728
whose key is equivalent to \tcode{k},
16730-
assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}.
16729+
assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}.
1673116730
Otherwise, equivalent to
1673216731
\begin{codeblock}
1673316732
try_emplace(std::forward<decltype(k)>(k), std::forward<M>(obj))
@@ -16782,7 +16781,7 @@
1678216781
\effects
1678316782
If the map already contains an element \tcode{e}
1678416783
whose key is equivalent to \tcode{k},
16785-
assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}.
16784+
assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}.
1678616785
Otherwise, equivalent to
1678716786
\begin{codeblock}
1678816787
try_emplace(std::forward<K>(k), std::forward<M>(obj))
@@ -17387,14 +17386,14 @@
1738717386
\pnum
1738817387
\effects
1738917388
Equivalent to \tcode{flat_multimap(key_cont, mapped_cont)} and
17390-
\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively,
17389+
\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively,
1739117390
except that \tcode{\exposid{c}.keys} and \tcode{\exposid{c}.values} are constructed
1739217391
with uses-allocator construction\iref{allocator.uses.construction}.
1739317392

1739417393
\pnum
1739517394
\complexity
1739617395
Same as \tcode{flat_multimap(key_cont, mapped_cont)} and
17397-
\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively.
17396+
\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively.
1739817397
\end{itemdescr}
1739917398

1740017399
\indexlibraryctor{flat_multimap}%
@@ -21920,7 +21919,7 @@
2192021919
\item
2192121920
If \exposid{rank_} is greater than one,
2192221921
then the product of
21923-
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\linebreak 0))} and
21922+
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(0))} and
2192421923
all values \tcode{ext.extent($k$)}
2192521924
with $k$ in the range of \range{1}{\exposid{rank_}}
2192621925
is representable as a value of type \tcode{index_type}.
@@ -21999,7 +21998,7 @@
2199921998
\item
2200021999
If \exposid{rank_} is greater than \tcode{1} and
2200122000
\tcode{padding_value} does not equal \tcode{dynamic_extent},
22002-
then \tcode{other.\linebreak stride(1)} equals
22001+
then \tcode{other.stride(1)} equals
2200322002
\begin{codeblock}
2200422003
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2200522004
extents_type::@\exposid{index-cast}@(other.extents().extent(0)))
@@ -22066,7 +22065,7 @@
2206622065
\item
2206722066
If \exposid{rank_} is greater than 1 and
2206822067
\tcode{padding_value} does not equal \tcode{dynamic_extent},
22069-
then \tcode{other.\linebreak stride(1)} equals
22068+
then \tcode{other.stride(1)} equals
2207022069
\begin{codeblock}
2207122070
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2207222071
extents_type::@\exposid{index-cast}@(other.extent(0)))
@@ -22464,7 +22463,7 @@
2246422463
if \exposid{static-padding-stride} is not \tcode{dynamic_extent}.
2246522464
\begin{note}
2246622465
Using \tcode{extents<index_type, \exposid{static-padding-stride}>}
22467-
instead of \tcode{index_type} as the type of \exposid{stride-\linebreak rm2}
22466+
instead of \tcode{index_type} as the type of \exposid{stride-rm2}
2246822467
would achieve this.
2246922468
\end{note}
2247022469
\end{itemdescr}
@@ -22547,13 +22546,13 @@
2254722546
\item
2254822547
If \exposid{rank_} is greater than one,
2254922548
then the product of
22550-
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\exposid{\linebreak rank_} - 1))} and
22549+
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\exposid{rank_} - 1))} and
2255122550
all values \tcode{ext.extent($k$)}
2255222551
with $k$ in the range of \range{0}{\exposid{rank_} - 1}
2255322552
is representable as a value of type \tcode{index_type}.
2255422553
\item
2255522554
If \tcode{padding_value} is not equal to \tcode{dynamic_extent},
22556-
\tcode{padding_value} equals \tcode{extents_type::\linebreak \exposid{index-cast}(pad)}.
22555+
\tcode{padding_value} equals \tcode{extents_type::\exposid{index-cast}(pad)}.
2255722556
\end{itemize}
2255822557

2255922558
\pnum
@@ -22626,7 +22625,7 @@
2262622625
\item
2262722626
If \exposid{rank_} is greater than 1 and
2262822627
\tcode{padding_value} does not equal \tcode{dynamic_extent},
22629-
then \tcode{other.\linebreak stride(\exposid{rank_} - 2)} equals
22628+
then \tcode{other.stride(\exposid{rank_} - 2)} equals
2263022629
\begin{codeblock}
2263122630
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2263222631
extents_type::@\exposid{index-cast}@(other.extents().extent(@\exposid{rank_}@ - 1)))
@@ -22694,7 +22693,7 @@
2269422693
\item
2269522694
If \exposid{rank_} is greater than 1 and
2269622695
\tcode{padding_value} does not equal \tcode{dynamic_extent},
22697-
then \tcode{other.\linebreak stride(\exposid{rank_} - 2)} equals
22696+
then \tcode{other.stride(\exposid{rank_} - 2)} equals
2269822697
\begin{codeblock}
2269922698
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2270022699
extents_type::@\exposid{index-cast}@(other.extent(@\exposid{rank_}@ - 1)))
@@ -24284,7 +24283,7 @@
2428424283
\item
2428524284
\tcode{stride(k) * \exposid{de-ice}($s_k$.stride)}
2428624285
if $S_k$ is a specialization of \tcode{strided_slice} and
24287-
\tcode{$s_k$.stride < $s_k$.\linebreak extent} is \tcode{true};
24286+
\tcode{$s_k$.stride < $s_k$.extent} is \tcode{true};
2428824287
\item
2428924288
otherwise, \tcode{stride($k$)}.
2429024289
\end{itemize}
@@ -24682,11 +24681,11 @@
2468224681
\begin{itemize}
2468324682
\item
2468424683
\tcode{decltype(submdspan_mapping(src.mapping(), slices...))}
24685-
is a specialization of \tcode{submd-\linebreak{}span_mapping_result}.
24684+
is a specialization of \tcode{submdspan_mapping_result}.
2468624685

2468724686
\item
2468824687
\tcode{is_same_v<remove_cvref_t<decltype(sub_map_offset.mapping.extents())>,}
24689-
\tcode{decltype(\linebreak{}submdspan_extents(src.mapping(), slices...))>}
24688+
\tcode{decltype(submdspan_extents(src.mapping(), slices...))>}
2469024689
is \tcode{true}.
2469124690

2469224691
\item
@@ -24716,11 +24715,11 @@
2471624715
\item
2471724716
$0 \le \tcode{\exposid{first_}<index_type, $k$>(slices...)}$
2471824717
$\le \tcode{\exposid{last_}<$k$>(src.extents(), slices...)}$
24719-
$\le \tcode{\linebreak{}src.extent($k$)}$
24718+
$\le \tcode{src.extent($k$)}$
2472024719
\end{itemize}
2472124720

2472224721
\item
24723-
\tcode{sub_map_offset.mapping.extents() == submdspan_extents(src.mapping(), slices...)}\linebreak
24722+
\tcode{sub_map_offset.mapping.extents() == submdspan_extents(src.mapping(), slices...)}
2472424723
is \tcode{true}; and
2472524724

2472624725
\item

source/exec.tex

+9-9
Original file line numberDiff line numberDiff line change
@@ -2823,7 +2823,7 @@
28232823
Let \tcode{out_sndr} and \tcode{env} be subexpressions
28242824
such that \tcode{OutSndr} is \tcode{decltype((out_sndr))}.
28252825
If \tcode{\exposconcept{sender-for}<Out\-Sndr, starts_on_t>} is \tcode{false},
2826-
then the expressions \tcode{starts_on.transform_env(out_sndr, env)} and\linebreak
2826+
then the expressions \tcode{starts_on.transform_env(out_sndr, env)} and
28272827
\tcode{starts_on.transform_sender(out_sndr, env)} are ill-formed; otherwise
28282828
\begin{itemize}
28292829
\item
@@ -3175,7 +3175,7 @@
31753175
\pnum
31763176
Let \tcode{out_sndr} and \tcode{env} be subexpressions,
31773177
let \tcode{OutSndr} be \tcode{decltype((out_sndr))}, and
3178-
let \tcode{Env} be \tcode{decltype((\linebreak env))}.
3178+
let \tcode{Env} be \tcode{decltype((env))}.
31793179
If \tcode{\exposconcept{sender-for}<OutSndr, on_t>} is \tcode{false},
31803180
then the expressions \tcode{on.transform_env(out_sndr, env)} and
31813181
\tcode{on.transform_sender(out_sndr, env)} are ill-formed.
@@ -3337,7 +3337,7 @@
33373337
For subexpressions \tcode{sndr} and \tcode{f},
33383338
if \tcode{decltype((sndr))} does not satisfy \libconcept{sender}, or
33393339
\tcode{decltype((f))} does not satisfy \exposconcept{movable-value},
3340-
\tcode{\exposid{then-cpo}(\linebreak sndr, f) }is ill-formed.
3340+
\tcode{\exposid{then-cpo}(sndr, f) }is ill-formed.
33413341

33423342
\pnum
33433343
Otherwise,
@@ -3518,7 +3518,7 @@
35183518
Let \tcode{LetSigs} be a pack of those types in \tcode{Sigs}
35193519
with a return type of \tcode{\exposid{decayed-typeof}<\exposid{set-cpo}>}.
35203520
Let \exposid{as-tuple} be an alias template
3521-
such that \tcode{\exposid{as-tuple}<\linebreak Tag(Args...)>} denotes
3521+
such that \tcode{\exposid{as-tuple}<Tag(Args...)>} denotes
35223522
the type \tcode{\exposid{decayed-tuple}<Args...>}.
35233523
Then \tcode{args_variant_t} denotes
35243524
the type \tcode{variant<monostate, \exposid{as-tuple}<LetSigs>...>}
@@ -3573,7 +3573,7 @@
35733573
Let \tcode{sndr} and \tcode{env} be subexpressions, and
35743574
let \tcode{Sndr} be \tcode{decltype((sndr))}.
35753575
If
3576-
\tcode{\exposconcept{sender-for}<Sndr, \exposid{decayed-\linebreak typeof}<\exposid{let-cpo}>>}
3576+
\tcode{\exposconcept{sender-for}<Sndr, \exposid{decayed-typeof}<\exposid{let-cpo}>>}
35773577
is \tcode{false},
35783578
then the expression \tcode{\exposid{let-cpo}.transform_env(sndr, env)}
35793579
is ill-formed.
@@ -4330,7 +4330,7 @@
43304330
\end{codeblock}
43314331
if the expression \tcode{\exposid{decayed-tuple}<decltype(as)...>\{as...\}}
43324332
is potentially throwing;
4333-
otherwise, \tcode{o.emplace(\linebreak as...)}.
4333+
otherwise, \tcode{o.emplace(as...)}.
43344334

43354335
\pnum
43364336
The expression \tcode{when_all_with_variant(sndrs...)}
@@ -4643,7 +4643,7 @@
46434643

46444644
\pnum
46454645
For a subexpression \tcode{sndr}, let \tcode{Sndr} be \tcode{decltype((sndr))}.
4646-
If \tcode{\libconcept{sender_to}<Sndr, \exposid{sync-wait-receiver}<\linebreak Sndr>>}
4646+
If \tcode{\libconcept{sender_to}<Sndr, \exposid{sync-wait-receiver}<Sndr>>}
46474647
is \tcode{false},
46484648
the expression \tcode{sync_wait.apply_sender(sndr)} is ill-formed;
46494649
otherwise, it is equivalent to:
@@ -4714,7 +4714,7 @@
47144714

47154715
\pnum
47164716
If \tcode{\exposconcept{callable}<sync_wait_t, Sndr>} is \tcode{false},
4717-
the expression \tcode{sync_wait_with_variant.apply_sender(\linebreak sndr)} is ill-formed.
4717+
the expression \tcode{sync_wait_with_variant.apply_sender(sndr)} is ill-formed.
47184718
Otherwise, it is equivalent to:
47194719
\begin{codeblock}
47204720
using result_type = @\exposid{sync-wait-with-variant-result-type}@<Sndr>;
@@ -4955,7 +4955,7 @@
49554955
Let \tcode{Es} be a pack of the types in the \exposid{type-list} named by
49564956
\tcode{\exposid{gather-signatures}<set_error_t, InputSigna\-tures, type_identity_t, \exposid{error-list}>},
49574957
where \exposid{error-list} is an alias template
4958-
such that \tcode{\exposid{error-list}<\linebreak Ts...>} is
4958+
such that \tcode{\exposid{error-list}<Ts...>} is
49594959
\tcode{\exposid{type-list}<SetError<Ts>...>}.
49604960

49614961
\pnum

source/memory.tex

+3-3
Original file line numberDiff line numberDiff line change
@@ -1103,7 +1103,7 @@
11031103
\begin{itemize}
11041104
\item
11051105
If \tcode{uses_allocator_v<remove_cv_t<T>, Alloc>} is \tcode{false} and
1106-
\tcode{is_constructible_v<T,\linebreak Args...>} is \tcode{true},
1106+
\tcode{is_constructible_v<T, Args...>} is \tcode{true},
11071107
return \tcode{forward_as_tuple(std::forward<Args>(args)...)}.
11081108
\item
11091109
Otherwise, if \tcode{uses_allocator_v<remove_cv_t<T>, Alloc>} is \tcode{true} and
@@ -4036,7 +4036,7 @@
40364036
the allocator \tcode{a} passed to \tcode{allocate_shared}.
40374037
\item
40384038
When a (sub)object of non-array type \tcode{U} is initialized by
4039-
\tcode{make_shared_for_overwrite} or\linebreak % avoid Overfull
4039+
\tcode{make_shared_for_overwrite} or
40404040
\tcode{allocate_shared_for_overwrite},
40414041
it is initialized via the expression \tcode{::new(pv) U},
40424042
where \tcode{pv} has type \tcode{void*} and
@@ -5271,7 +5271,7 @@
52715271
\end{codeblock}
52725272
if the expression
52735273
\tcode{s.reset(static_cast<SP>(p), std::forward<Args>(args)...)}
5274-
is well-\linebreak formed;
5274+
is well-formed;
52755275
\item
52765276
otherwise,
52775277
\begin{codeblock}

source/meta.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -2144,7 +2144,7 @@
21442144
\item Let \tcode{R} be \tcode{\placeholdernc{COMMON-REF}(T1, T2)}.
21452145
If \tcode{T1} and \tcode{T2} are reference types,
21462146
\tcode{R} is well-formed, and
2147-
\tcode{is_convertible_v<add_pointer_t<T1>, add_pointer_t<R>> \&\& is_convertible_v<add_poin\linebreak{}ter_t<T2>, add_pointer_t<R>>} is \tcode{true},
2147+
\tcode{is_convertible_v<add_pointer_t<T1>, add_pointer_t<R>> \&\& is_convertible_v<add_pointer_t<T2>, add_pointer_t<R>>} is \tcode{true},
21482148
then the member typedef \tcode{type} denotes \tcode{R}.
21492149

21502150
\item Otherwise, if

source/numerics.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -13694,7 +13694,7 @@
1369413694
\mandates
1369513695
Let \tcode{a} be
1369613696
\tcode{\exposid{abs-if-needed}(declval<typename InVec::value_type>())}.
13697-
Then, \tcode{decltype(\linebreak init + a * a} is convertible to \tcode{Scalar}.
13697+
Then, \tcode{decltype(init + a * a} is convertible to \tcode{Scalar}.
1369813698

1369913699
\pnum
1370013700
\returns
@@ -13900,7 +13900,7 @@
1390013900
\mandates
1390113901
Let \tcode{a} be
1390213902
\tcode{\exposid{abs-if-needed}(declval<typename InMat::value_type>())}.
13903-
Then, \tcode{decltype(\linebreak init + a * a)}
13903+
Then, \tcode{decltype(init + a * a)}
1390413904
is convertible to \tcode{Scalar}.
1390513905

1390613906
\pnum

0 commit comments

Comments
 (0)