Skip to content

Commit 930dc9a

Browse files
committed
Remove awkward \linebreaks.
1 parent 5cd0a26 commit 930dc9a

8 files changed

Lines changed: 56 additions & 56 deletions

File tree

source/algorithms.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7073,7 +7073,7 @@
70737073
\tcode{invoke(op, invoke(proj, *(first1 + (i - result))))}
70747074
for unary transforms defined in namespace \tcode{ranges};
70757075
\item
7076-
\tcode{invoke(binary_op, invoke(proj1, *(first1 + (i - result))), invoke(proj2,\linebreak *(first2 + (i - result))))}
7076+
\tcode{invoke(binary_op, invoke(proj1, *(first1 + (i - result))), invoke(proj2, *(first2 + (i - result))))}
70777077
for binary transforms defined in namespace \tcode{ranges}.
70787078
\end{itemize}
70797079
\end{itemize}
@@ -14212,7 +14212,7 @@
1421214212
\pnum
1421314213
\constraints
1421414214
\tcode{is_unbounded_array_v<T>} is \tcode{false}.
14215-
The expression \tcode{::new (declval<void*>()) T(\linebreak{}declval<Args>()...)}
14215+
The expression \tcode{::new (declval<void*>()) T(declval<Args>()...)}
1421614216
is well-formed when treated as an unevaluated operand\iref{term.unevaluated.operand}.
1421714217

1421814218
\pnum

source/containers.tex

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1461,7 +1461,7 @@
14611461
\pnum
14621462
\recommended
14631463
If \tcode{R} models \tcode{ranges::\libconcept{approximately_sized_range}} and
1464-
\tcode{ranges::distance(\linebreak{}rg) <= ranges::reserve_hint(rg)} is \tcode{true},
1464+
\tcode{ranges::distance(rg) <= ranges::reserve_hint(rg)} is \tcode{true},
14651465
an implementation should not perform more than a single reallocation.
14661466

14671467
\pnum
@@ -1836,7 +1836,7 @@
18361836
\pnum
18371837
\recommended
18381838
If \tcode{R} models \tcode{ranges::\libconcept{approximately_sized_range}} and
1839-
\tcode{ranges::distance(\linebreak{}rg) <= ranges::reserve_hint(rg)} is \tcode{true},
1839+
\tcode{ranges::distance(rg) <= ranges::reserve_hint(rg)} is \tcode{true},
18401840
an implementation should not perform any reallocation.
18411841
\end{itemdescr}
18421842

@@ -2453,7 +2453,7 @@
24532453
\item
24542454
If \tcode{!\exposid{alloc_}} is \tcode{true} or
24552455
\tcode{\exposid{ator-traits}::propagate_on_container_move_assignment::value}
2456-
is \tcode{true}, \linebreak
2456+
is \tcode{true},
24572457
move assigns \tcode{nh.\exposid{alloc_}} to \exposid{alloc_}.
24582458
\item
24592459
Assigns
@@ -7473,14 +7473,14 @@
74737473
\pnum
74747474
\expects
74757475
\tcode{T} is \oldconcept{EmplaceConstructible} into \tcode{forward_list}
7476-
from \tcode{std::forward<Args>(\linebreak args)...}.
7476+
from \tcode{std::forward<Args>(args)...}.
74777477
\tcode{position} is \tcode{before_begin()} or is a dereferenceable
74787478
iterator in the range \range{begin()}{end()}.
74797479

74807480
\pnum
74817481
\effects
74827482
Inserts an object of type \tcode{value_type} direct-non-list-initialized with
7483-
\tcode{std::forward<Args>(\linebreak args)...} after \tcode{position}.
7483+
\tcode{std::forward<Args>(args)...} after \tcode{position}.
74847484

74857485
\pnum
74867486
\returns
@@ -10742,7 +10742,7 @@
1074210742
\pnum
1074310743
The expression
1074410744
\tcode{\exposid{is-vector-bool-reference}<T>} is \tcode{true}
10745-
if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::\linebreak{}reference}
10745+
if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::reference}
1074610746
for some type \tcode{Alloc} and
1074710747
\tcode{vector<bool, Alloc>} is not a program-defined specialization.
1074810748
\end{itemdescr}
@@ -12124,7 +12124,7 @@
1212412124
Otherwise, let \tcode{r} be \tcode{equal_range(k)}.
1212512125
Constructs an object \tcode{u} of type \tcode{value_type} with
1212612126
\tcode{piecewise_construct, forward_as_tuple(std::forward<K>(k)),
12127-
forward_as_tuple(std::forward<Args>(args)...)}.\linebreak
12127+
forward_as_tuple(std::forward<Args>(args)...)}.
1212812128
If \tcode{equal_range(u.first) == r} is \tcode{false},
1212912129
the behavior is undefined.
1213012130
Inserts \tcode{u} into \tcode{*this}.
@@ -17817,7 +17817,7 @@
1781717817
\pnum
1781817818
\effects
1781917819
Initializes an object \tcode{t} of type \tcode{pair<key_type, mapped_type>}
17820-
with \tcode{std::forward<Args>(\linebreak args)...};
17820+
with \tcode{std::forward<Args>(args)...};
1782117821
if the map already contains an element
1782217822
whose key is equivalent to \tcode{t.first},
1782317823
\tcode{*this} is unchanged.
@@ -18089,7 +18089,7 @@
1808918089
\effects
1809018090
If the map already contains an element \tcode{e}
1809118091
whose key is equivalent to \tcode{k},
18092-
assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}.
18092+
assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}.
1809318093
Otherwise, equivalent to
1809418094
\begin{codeblock}
1809518095
try_emplace(std::forward<decltype(k)>(k), std::forward<M>(obj))
@@ -18144,7 +18144,7 @@
1814418144
\effects
1814518145
If the map already contains an element \tcode{e}
1814618146
whose key is equivalent to \tcode{k},
18147-
assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}.
18147+
assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}.
1814818148
Otherwise, equivalent to
1814918149
\begin{codeblock}
1815018150
try_emplace(std::forward<K>(k), std::forward<M>(obj))
@@ -18774,14 +18774,14 @@
1877418774
\pnum
1877518775
\effects
1877618776
Equivalent to \tcode{flat_multimap(key_cont, mapped_cont)} and
18777-
\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively,
18777+
\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively,
1877818778
except that \tcode{\exposid{c}.keys} and \tcode{\exposid{c}.values} are constructed
1877918779
with uses-allocator construction\iref{allocator.uses.construction}.
1878018780

1878118781
\pnum
1878218782
\complexity
1878318783
Same as \tcode{flat_multimap(key_cont, mapped_cont)} and
18784-
\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively.
18784+
\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively.
1878518785
\end{itemdescr}
1878618786

1878718787
\indexlibraryctor{flat_multimap}%
@@ -23454,7 +23454,7 @@
2345423454
\item
2345523455
If \exposid{rank_} is greater than one,
2345623456
then the product of
23457-
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\linebreak 0))} and
23457+
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(0))} and
2345823458
all values \tcode{ext.extent($k$)}
2345923459
with $k$ in the range of \range{1}{\exposid{rank_}}
2346023460
is representable as a value of type \tcode{index_type}.
@@ -23533,7 +23533,7 @@
2353323533
\item
2353423534
If \exposid{rank_} is greater than \tcode{1} and
2353523535
\tcode{padding_value} does not equal \tcode{dynamic_extent},
23536-
then \tcode{other.\linebreak stride(1)} equals
23536+
then \tcode{other.stride(1)} equals
2353723537
\begin{codeblock}
2353823538
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2353923539
extents_type::@\exposid{index-cast}@(other.extents().extent(0)))
@@ -23608,7 +23608,7 @@
2360823608
\item
2360923609
If \exposid{rank_} is greater than 1 and
2361023610
\tcode{padding_value} does not equal \tcode{dynamic_extent},
23611-
then \tcode{other.\linebreak stride(1)} equals
23611+
then \tcode{other.stride(1)} equals
2361223612
\begin{codeblock}
2361323613
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2361423614
extents_type::@\exposid{index-cast}@(other.extent(0)))
@@ -24008,7 +24008,7 @@
2400824008
if \exposid{static-padding-stride} is not \tcode{dynamic_extent}.
2400924009
\begin{note}
2401024010
Using \tcode{extents<index_type, \exposid{static-padding-stride}>}
24011-
instead of \tcode{index_type} as the type of \exposid{stride-\linebreak rm2}
24011+
instead of \tcode{index_type} as the type of \exposid{stride-rm2}
2401224012
would achieve this.
2401324013
\end{note}
2401424014
\end{itemdescr}
@@ -24095,7 +24095,7 @@
2409524095
\item
2409624096
If \exposid{rank_} is greater than one,
2409724097
then the product of
24098-
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\exposid{\linebreak rank_} - 1))} and
24098+
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\exposid{rank_} - 1))} and
2409924099
all values \tcode{ext.extent($k$)}
2410024100
with $k$ in the range of \range{0}{\exposid{rank_} - 1}
2410124101
is representable as a value of type \tcode{index_type}.
@@ -24174,7 +24174,7 @@
2417424174
\item
2417524175
If \exposid{rank_} is greater than 1 and
2417624176
\tcode{padding_value} does not equal \tcode{dynamic_extent},
24177-
then \tcode{other.\linebreak stride(\exposid{rank_} - 2)} equals
24177+
then \tcode{other.stride(\exposid{rank_} - 2)} equals
2417824178
\begin{codeblock}
2417924179
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2418024180
extents_type::@\exposid{index-cast}@(other.extents().extent(@\exposid{rank_}@ - 1)))
@@ -24249,7 +24249,7 @@
2424924249
\item
2425024250
If \exposid{rank_} is greater than 1 and
2425124251
\tcode{padding_value} does not equal \tcode{dynamic_extent},
24252-
then \tcode{other.\linebreak stride(\exposid{rank_} - 2)} equals
24252+
then \tcode{other.stride(\exposid{rank_} - 2)} equals
2425324253
\begin{codeblock}
2425424254
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2425524255
extents_type::@\exposid{index-cast}@(other.extent(@\exposid{rank_}@ - 1)))

source/exec.tex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3914,7 +3914,7 @@
39143914
\pnum
39153915
Let \tcode{out_sndr} and \tcode{env} be subexpressions,
39163916
let \tcode{OutSndr} be \tcode{decltype((out_sndr))}, and
3917-
let \tcode{Env} be \tcode{decltype((\linebreak env))}.
3917+
let \tcode{Env} be \tcode{decltype((env))}.
39183918
If \tcode{\exposconcept{sender-for}<OutSndr, on_t>} is \tcode{false},
39193919
then the expression \tcode{on.transform_sender(out_sndr, env)} is ill-formed.
39203920

@@ -4019,7 +4019,7 @@
40194019
For subexpressions \tcode{sndr} and \tcode{f},
40204020
if \tcode{decltype((sndr))} does not satisfy \libconcept{sender}, or
40214021
\tcode{decltype((f))} does not satisfy \exposconcept{movable-value},
4022-
\tcode{\exposid{then-cpo}(\linebreak sndr, f) }is ill-formed.
4022+
\tcode{\exposid{then-cpo}(sndr, f) }is ill-formed.
40234023

40244024
\pnum
40254025
Otherwise,
@@ -4982,7 +4982,7 @@
49824982
\end{codeblock}
49834983
if the expression \tcode{\exposid{decayed-tuple}<decltype(as)...>\{as...\}}
49844984
is potentially throwing;
4985-
otherwise, \tcode{o.emplace(\linebreak as...)}.
4985+
otherwise, \tcode{o.emplace(as...)}.
49864986

49874987
\pnum
49884988
The expression \tcode{when_all_with_variant(sndrs...)}
@@ -6152,7 +6152,7 @@
61526152

61536153
\pnum
61546154
For a subexpression \tcode{sndr}, let \tcode{Sndr} be \tcode{decltype((sndr))}.
6155-
If \tcode{\exposconcept{sender-to}<Sndr, \exposid{sync-wait-receiver}<\linebreak Sndr>>}
6155+
If \tcode{\exposconcept{sender-to}<Sndr, \exposid{sync-wait-receiver}<Sndr>>}
61566156
is \tcode{false},
61576157
the expression \tcode{sync_wait.apply_sender(sndr)} is ill-formed;
61586158
otherwise, it is equivalent to:

source/memory.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1281,7 +1281,7 @@
12811281
\begin{itemize}
12821282
\item
12831283
If \tcode{uses_allocator_v<remove_cv_t<T>, Alloc>} is \tcode{false} and
1284-
\tcode{is_constructible_v<T,\linebreak Args...>} is \tcode{true},
1284+
\tcode{is_constructible_v<T, Args...>} is \tcode{true},
12851285
return \tcode{forward_as_tuple(std::forward<Args>(args)...)}.
12861286
\item
12871287
Otherwise, if \tcode{uses_allocator_v<remove_cv_t<T>, Alloc>} is \tcode{true} and
@@ -4246,7 +4246,7 @@
42464246
the allocator \tcode{a} passed to \tcode{allocate_shared}.
42474247
\item
42484248
When a (sub)object of non-array type \tcode{U} is initialized by
4249-
\tcode{make_shared_for_overwrite} or\linebreak % avoid Overfull
4249+
\tcode{make_shared_for_overwrite} or
42504250
\tcode{allocate_shared_for_overwrite},
42514251
it is initialized via the expression \tcode{::new(pv) U},
42524252
where \tcode{pv} has type \tcode{void*} and
@@ -5481,7 +5481,7 @@
54815481
\end{codeblock}
54825482
if the expression
54835483
\tcode{s.reset(static_cast<SP>(p), std::forward<Args>(args)...)}
5484-
is well-\linebreak formed;
5484+
is well-formed;
54855485
\item
54865486
otherwise,
54875487
\begin{codeblock}

source/meta.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2273,7 +2273,7 @@
22732273
\item Let \tcode{R} be \tcode{\placeholdernc{COMMON-REF}(T1, T2)}.
22742274
If \tcode{T1} and \tcode{T2} are reference types,
22752275
\tcode{R} is well-formed, and
2276-
\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},
2276+
\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},
22772277
then the member typedef \tcode{type} denotes \tcode{R}.
22782278

22792279
\item Otherwise, if

0 commit comments

Comments
 (0)