Skip to content

Commit 339a65d

Browse files
committed
Remove awkward \linebreaks.
1 parent 7e0f6ea commit 339a65d

8 files changed

Lines changed: 59 additions & 59 deletions

File tree

source/algorithms.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7070,7 +7070,7 @@
70707070
\tcode{invoke(op, invoke(proj, *(first1 + (i - result))))}
70717071
for unary transforms defined in namespace \tcode{ranges};
70727072
\item
7073-
\tcode{invoke(binary_op, invoke(proj1, *(first1 + (i - result))), invoke(proj2,\linebreak *(first2 + (i - result))))}
7073+
\tcode{invoke(binary_op, invoke(proj1, *(first1 + (i - result))), invoke(proj2, *(first2 + (i - result))))}
70747074
for binary transforms defined in namespace \tcode{ranges}.
70757075
\end{itemize}
70767076
\end{itemize}
@@ -14196,7 +14196,7 @@
1419614196
\pnum
1419714197
\constraints
1419814198
\tcode{is_unbounded_array_v<T>} is \tcode{false}.
14199-
The expression \tcode{::new (declval<void*>()) T(\linebreak{}declval<Args>()...)}
14199+
The expression \tcode{::new (declval<void*>()) T(declval<Args>()...)}
1420014200
is well-formed when treated as an unevaluated operand\iref{term.unevaluated.operand}.
1420114201

1420214202
\pnum

source/containers.tex

Lines changed: 20 additions & 20 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
@@ -10719,7 +10719,7 @@
1071910719
\pnum
1072010720
The expression
1072110721
\tcode{\exposid{is-vector-bool-reference}<T>} is \tcode{true}
10722-
if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::\linebreak{}reference}
10722+
if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::reference}
1072310723
for some type \tcode{Alloc} and
1072410724
\tcode{vector<bool, Alloc>} is not a program-defined specialization.
1072510725
\end{itemdescr}
@@ -12116,7 +12116,7 @@
1211612116
Otherwise, let \tcode{r} be \tcode{equal_range(k)}.
1211712117
Constructs an object \tcode{u} of type \tcode{value_type} with
1211812118
\tcode{piecewise_construct, forward_as_tuple(std::forward<K>(k)),
12119-
forward_as_tuple(std::forward<Args>(args)...)}.\linebreak
12119+
forward_as_tuple(std::forward<Args>(args)...)}.
1212012120
If \tcode{equal_range(u.first) == r} is \tcode{false},
1212112121
the behavior is undefined.
1212212122
Inserts \tcode{u} into \tcode{*this}.
@@ -17809,7 +17809,7 @@
1780917809
\pnum
1781017810
\effects
1781117811
Initializes an object \tcode{t} of type \tcode{pair<key_type, mapped_type>}
17812-
with \tcode{std::forward<Args>(\linebreak args)...};
17812+
with \tcode{std::forward<Args>(args)...};
1781317813
if the map already contains an element
1781417814
whose key is equivalent to \tcode{t.first},
1781517815
\tcode{*this} is unchanged.
@@ -18081,7 +18081,7 @@
1808118081
\effects
1808218082
If the map already contains an element \tcode{e}
1808318083
whose key is equivalent to \tcode{k},
18084-
assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}.
18084+
assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}.
1808518085
Otherwise, equivalent to
1808618086
\begin{codeblock}
1808718087
try_emplace(std::forward<decltype(k)>(k), std::forward<M>(obj))
@@ -18136,7 +18136,7 @@
1813618136
\effects
1813718137
If the map already contains an element \tcode{e}
1813818138
whose key is equivalent to \tcode{k},
18139-
assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}.
18139+
assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}.
1814018140
Otherwise, equivalent to
1814118141
\begin{codeblock}
1814218142
try_emplace(std::forward<K>(k), std::forward<M>(obj))
@@ -18766,14 +18766,14 @@
1876618766
\pnum
1876718767
\effects
1876818768
Equivalent to \tcode{flat_multimap(key_cont, mapped_cont)} and
18769-
\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively,
18769+
\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively,
1877018770
except that \tcode{\exposid{c}.keys} and \tcode{\exposid{c}.values} are constructed
1877118771
with uses-allocator construction\iref{allocator.uses.construction}.
1877218772

1877318773
\pnum
1877418774
\complexity
1877518775
Same as \tcode{flat_multimap(key_cont, mapped_cont)} and
18776-
\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively.
18776+
\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively.
1877718777
\end{itemdescr}
1877818778

1877918779
\indexlibraryctor{flat_multimap}%
@@ -23464,7 +23464,7 @@
2346423464
\item
2346523465
If \exposid{rank_} is greater than one,
2346623466
then the product of
23467-
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\linebreak 0))} and
23467+
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(0))} and
2346823468
all values \tcode{ext.extent($k$)}
2346923469
with $k$ in the range of \range{1}{\exposid{rank_}}
2347023470
is representable as a value of type \tcode{index_type}.
@@ -23543,7 +23543,7 @@
2354323543
\item
2354423544
If \exposid{rank_} is greater than \tcode{1} and
2354523545
\tcode{padding_value} does not equal \tcode{dynamic_extent},
23546-
then \tcode{other.\linebreak stride(1)} equals
23546+
then \tcode{other.stride(1)} equals
2354723547
\begin{codeblock}
2354823548
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2354923549
extents_type::@\exposid{index-cast}@(other.extents().extent(0)))
@@ -23618,7 +23618,7 @@
2361823618
\item
2361923619
If \exposid{rank_} is greater than 1 and
2362023620
\tcode{padding_value} does not equal \tcode{dynamic_extent},
23621-
then \tcode{other.\linebreak stride(1)} equals
23621+
then \tcode{other.stride(1)} equals
2362223622
\begin{codeblock}
2362323623
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2362423624
extents_type::@\exposid{index-cast}@(other.extent(0)))
@@ -24018,7 +24018,7 @@
2401824018
if \exposid{static-padding-stride} is not \tcode{dynamic_extent}.
2401924019
\begin{note}
2402024020
Using \tcode{extents<index_type, \exposid{static-padding-stride}>}
24021-
instead of \tcode{index_type} as the type of \exposid{stride-\linebreak rm2}
24021+
instead of \tcode{index_type} as the type of \exposid{stride-rm2}
2402224022
would achieve this.
2402324023
\end{note}
2402424024
\end{itemdescr}
@@ -24101,13 +24101,13 @@
2410124101
\item
2410224102
If \exposid{rank_} is greater than one,
2410324103
then the product of
24104-
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\exposid{\linebreak rank_} - 1))} and
24104+
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\exposid{rank_} - 1))} and
2410524105
all values \tcode{ext.extent($k$)}
2410624106
with $k$ in the range of \range{0}{\exposid{rank_} - 1}
2410724107
is representable as a value of type \tcode{index_type}.
2410824108
\item
2410924109
If \tcode{padding_value} is not equal to \tcode{dynamic_extent},
24110-
\tcode{padding_value} equals \tcode{extents_type::\linebreak \exposid{index-cast}(pad)}.
24110+
\tcode{padding_value} equals \tcode{extents_type::\exposid{index-cast}(pad)}.
2411124111
\end{itemize}
2411224112

2411324113
\pnum
@@ -24180,7 +24180,7 @@
2418024180
\item
2418124181
If \exposid{rank_} is greater than 1 and
2418224182
\tcode{padding_value} does not equal \tcode{dynamic_extent},
24183-
then \tcode{other.\linebreak stride(\exposid{rank_} - 2)} equals
24183+
then \tcode{other.stride(\exposid{rank_} - 2)} equals
2418424184
\begin{codeblock}
2418524185
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2418624186
extents_type::@\exposid{index-cast}@(other.extents().extent(@\exposid{rank_}@ - 1)))
@@ -24255,7 +24255,7 @@
2425524255
\item
2425624256
If \exposid{rank_} is greater than 1 and
2425724257
\tcode{padding_value} does not equal \tcode{dynamic_extent},
24258-
then \tcode{other.\linebreak stride(\exposid{rank_} - 2)} equals
24258+
then \tcode{other.stride(\exposid{rank_} - 2)} equals
2425924259
\begin{codeblock}
2426024260
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2426124261
extents_type::@\exposid{index-cast}@(other.extent(@\exposid{rank_}@ - 1)))

source/exec.tex

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3292,7 +3292,7 @@
32923292
Let \tcode{out_sndr} and \tcode{env} be subexpressions
32933293
such that \tcode{OutSndr} is \tcode{decltype((out_sndr))}.
32943294
If \tcode{\exposconcept{sender-for}<Out\-Sndr, starts_on_t>} is \tcode{false},
3295-
then the expressions \tcode{starts_on.transform_env(out_sndr, env)} and\linebreak
3295+
then the expressions \tcode{starts_on.transform_env(out_sndr, env)} and
32963296
\tcode{starts_on.transform_sender(out_sndr, env)} are ill-formed; otherwise
32973297
\begin{itemize}
32983298
\item
@@ -3672,7 +3672,7 @@
36723672
\pnum
36733673
Let \tcode{out_sndr} and \tcode{env} be subexpressions,
36743674
let \tcode{OutSndr} be \tcode{decltype((out_sndr))}, and
3675-
let \tcode{Env} be \tcode{decltype((\linebreak env))}.
3675+
let \tcode{Env} be \tcode{decltype((env))}.
36763676
If \tcode{\exposconcept{sender-for}<OutSndr, on_t>} is \tcode{false},
36773677
then the expressions \tcode{on.transform_env(out_sndr, env)} and
36783678
\tcode{on.transform_sender(out_sndr, env)} are ill-formed.
@@ -3814,7 +3814,7 @@
38143814
For subexpressions \tcode{sndr} and \tcode{f},
38153815
if \tcode{decltype((sndr))} does not satisfy \libconcept{sender}, or
38163816
\tcode{decltype((f))} does not satisfy \exposconcept{movable-value},
3817-
\tcode{\exposid{then-cpo}(\linebreak sndr, f) }is ill-formed.
3817+
\tcode{\exposid{then-cpo}(sndr, f) }is ill-formed.
38183818

38193819
\pnum
38203820
Otherwise,
@@ -4115,7 +4115,7 @@
41154115
Let \tcode{sndr} and \tcode{env} be subexpressions, and
41164116
let \tcode{Sndr} be \tcode{decltype((sndr))}.
41174117
If
4118-
\tcode{\exposconcept{sender-for}<Sndr, \exposid{decayed-\linebreak typeof}<\exposid{let-cpo}>>}
4118+
\tcode{\exposconcept{sender-for}<Sndr, \exposid{decayed-typeof}<\exposid{let-cpo}>>}
41194119
is \tcode{false},
41204120
then the expression \tcode{\exposid{let-cpo}.transform_env(sndr, env)}
41214121
is ill-formed.
@@ -4756,7 +4756,7 @@
47564756
\end{codeblock}
47574757
if the expression \tcode{\exposid{decayed-tuple}<decltype(as)...>\{as...\}}
47584758
is potentially throwing;
4759-
otherwise, \tcode{o.emplace(\linebreak as...)}.
4759+
otherwise, \tcode{o.emplace(as...)}.
47604760

47614761
\pnum
47624762
The expression \tcode{when_all_with_variant(sndrs...)}
@@ -5787,7 +5787,7 @@
57875787

57885788
\pnum
57895789
For a subexpression \tcode{sndr}, let \tcode{Sndr} be \tcode{decltype((sndr))}.
5790-
If \tcode{\libconcept{sender_to}<Sndr, \exposid{sync-wait-receiver}<\linebreak Sndr>>}
5790+
If \tcode{\libconcept{sender_to}<Sndr, \exposid{sync-wait-receiver}<Sndr>>}
57915791
is \tcode{false},
57925792
the expression \tcode{sync_wait.apply_sender(sndr)} is ill-formed;
57935793
otherwise, it is equivalent to:

source/memory.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1276,7 +1276,7 @@
12761276
\begin{itemize}
12771277
\item
12781278
If \tcode{uses_allocator_v<remove_cv_t<T>, Alloc>} is \tcode{false} and
1279-
\tcode{is_constructible_v<T,\linebreak Args...>} is \tcode{true},
1279+
\tcode{is_constructible_v<T, Args...>} is \tcode{true},
12801280
return \tcode{forward_as_tuple(std::forward<Args>(args)...)}.
12811281
\item
12821282
Otherwise, if \tcode{uses_allocator_v<remove_cv_t<T>, Alloc>} is \tcode{true} and
@@ -4241,7 +4241,7 @@
42414241
the allocator \tcode{a} passed to \tcode{allocate_shared}.
42424242
\item
42434243
When a (sub)object of non-array type \tcode{U} is initialized by
4244-
\tcode{make_shared_for_overwrite} or\linebreak % avoid Overfull
4244+
\tcode{make_shared_for_overwrite} or
42454245
\tcode{allocate_shared_for_overwrite},
42464246
it is initialized via the expression \tcode{::new(pv) U},
42474247
where \tcode{pv} has type \tcode{void*} and
@@ -5476,7 +5476,7 @@
54765476
\end{codeblock}
54775477
if the expression
54785478
\tcode{s.reset(static_cast<SP>(p), std::forward<Args>(args)...)}
5479-
is well-\linebreak formed;
5479+
is well-formed;
54805480
\item
54815481
otherwise,
54825482
\begin{codeblock}

source/meta.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2535,7 +2535,7 @@
25352535
\item Let \tcode{R} be \tcode{\placeholdernc{COMMON-REF}(T1, T2)}.
25362536
If \tcode{T1} and \tcode{T2} are reference types,
25372537
\tcode{R} is well-formed, and
2538-
\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},
2538+
\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},
25392539
then the member typedef \tcode{type} denotes \tcode{R}.
25402540

25412541
\item Otherwise, if

0 commit comments

Comments
 (0)