Skip to content

Commit 1243efa

Browse files
committed
Remove awkward \linebreaks.
1 parent 204a87e commit 1243efa

9 files changed

+67
-68
lines changed

source/algorithms.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -5435,7 +5435,7 @@
54355435
\tcode{invoke(op, invoke(proj, *(first1 + (i - result))))}
54365436
for unary transforms defined in namespace \tcode{ranges};
54375437
\item
5438-
\tcode{invoke(binary_op, invoke(proj1, *(first1 + (i - result))), invoke(proj2,\linebreak *(first2 + (i - result))))}
5438+
\tcode{invoke(binary_op, invoke(proj1, *(first1 + (i - result))), invoke(proj2, *(first2 + (i - result))))}
54395439
for binary transforms defined in namespace \tcode{ranges}.
54405440
\end{itemize}
54415441
\end{itemize}

source/containers.tex

+25-26
Original file line numberDiff line numberDiff line change
@@ -2365,8 +2365,7 @@
23652365
Assigns \tcode{nh.ptr_} to \tcode{ptr_}.
23662366
\item
23672367
If \tcode{!alloc\textunderscore} or \tcode{ator_traits::propagate_on_container_move_assignment::value}
2368-
is \tcode{true}, \linebreak
2369-
move assigns \tcode{nh.alloc_} to \tcode{alloc_}.
2368+
is \tcode{true}, move assigns \tcode{nh.alloc_} to \tcode{alloc_}.
23702369
\item
23712370
Assigns
23722371
\keyword{nullptr} to \tcode{nh.ptr_} and assigns \tcode{nullopt} to
@@ -7487,14 +7486,14 @@
74877486
\pnum
74887487
\expects
74897488
\tcode{T} is \oldconcept{EmplaceConstructible} into \tcode{forward_list}
7490-
from \tcode{std::forward<Args>(\linebreak args)...}.
7489+
from \tcode{std::forward<Args>(args)...}.
74917490
\tcode{position} is \tcode{before_begin()} or is a dereferenceable
74927491
iterator in the range \range{begin()}{end()}.
74937492

74947493
\pnum
74957494
\effects
74967495
Inserts an object of type \tcode{value_type} direct-non-list-initialized with
7497-
\tcode{std::forward<Args>(\linebreak args)...} after \tcode{position}.
7496+
\tcode{std::forward<Args>(args)...} after \tcode{position}.
74987497

74997498
\pnum
75007499
\returns
@@ -9429,7 +9428,7 @@
94299428
\pnum
94309429
The expression
94319430
\tcode{\exposid{is-vector-bool-reference}<T>} is \tcode{true}
9432-
if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::\linebreak{}reference}
9431+
if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::reference}
94339432
for some type \tcode{Alloc} and
94349433
\tcode{vector<bool, Alloc>} is not a program-defined specialization.
94359434
\end{itemdescr}
@@ -10859,7 +10858,7 @@
1085910858
Otherwise, let \tcode{r} be \tcode{equal_range(k)}.
1086010859
Constructs an object \tcode{u} of type \tcode{value_type} with
1086110860
\tcode{piecewise_construct, forward_as_tuple(std::forward<K>(k)),
10862-
forward_as_tuple(std::forward<Args>(args)...)}.\linebreak
10861+
forward_as_tuple(std::forward<Args>(args)...)}.
1086310862
If \tcode{equal_range(u.first) == r} is \tcode{false},
1086410863
the behavior is undefined.
1086510864
Inserts \tcode{u} into \tcode{*this}.
@@ -15280,7 +15279,7 @@
1528015279
\effects
1528115280
Initializes
1528215281
\tcode{c} with \tcode{ranges::to<Container>(std::forward<R>(rg), a)};
15283-
calls \tcode{make_heap(c.\linebreak begin(), c.end(), comp)}.
15282+
calls \tcode{make_heap(c.begin(), c.end(), comp)}.
1528415283
\end{itemdescr}
1528515284

1528615285
\rSec3[priqueue.members]{Members}
@@ -16296,7 +16295,7 @@
1629616295
\pnum
1629716296
\effects
1629816297
Equivalent to \tcode{flat_map(s, key_cont, mapped_cont)} and
16299-
\tcode{flat_map(s, key_cont, \linebreak{}mapped_cont, comp)}, respectively,
16298+
\tcode{flat_map(s, key_cont, mapped_cont, comp)}, respectively,
1630016299
except that \tcode{c.keys} and \tcode{c.values} are constructed
1630116300
with uses-allocator construction\iref{allocator.uses.construction}.
1630216301

@@ -16479,7 +16478,7 @@
1647916478
\pnum
1648016479
\effects
1648116480
Initializes an object \tcode{t} of type \tcode{pair<key_type, mapped_type>}
16482-
with \tcode{std::forward<Args>(\linebreak args)...};
16481+
with \tcode{std::forward<Args>(args)...};
1648316482
if the map already contains an element
1648416483
whose key is equivalent to \tcode{t.first},
1648516484
\tcode{*this} is unchanged.
@@ -16756,7 +16755,7 @@
1675616755
\effects
1675716756
If the map already contains an element \tcode{e}
1675816757
whose key is equivalent to \tcode{k},
16759-
assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}.
16758+
assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}.
1676016759
Otherwise, equivalent to
1676116760
\begin{codeblock}
1676216761
try_emplace(std::forward<decltype(k)>(k), std::forward<M>(obj))
@@ -16811,7 +16810,7 @@
1681116810
\effects
1681216811
If the map already contains an element \tcode{e}
1681316812
whose key is equivalent to \tcode{k},
16814-
assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}.
16813+
assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}.
1681516814
Otherwise, equivalent to
1681616815
\begin{codeblock}
1681716816
try_emplace(std::forward<K>(k), std::forward<M>(obj))
@@ -17416,14 +17415,14 @@
1741617415
\pnum
1741717416
\effects
1741817417
Equivalent to \tcode{flat_multimap(key_cont, mapped_cont)} and
17419-
\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively,
17418+
\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively,
1742017419
except that \tcode{c.keys} and \tcode{c.values} are constructed
1742117420
with uses-allocator construction\iref{allocator.uses.construction}.
1742217421

1742317422
\pnum
1742417423
\complexity
1742517424
Same as \tcode{flat_multimap(key_cont, mapped_cont)} and
17426-
\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively.
17425+
\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively.
1742717426
\end{itemdescr}
1742817427

1742917428
\indexlibraryctor{flat_multimap}%
@@ -21906,7 +21905,7 @@
2190621905
\item
2190721906
If \exposid{rank_} is greater than one,
2190821907
then the product of
21909-
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\linebreak 0))} and
21908+
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(0))} and
2191021909
all values \tcode{ext.extent($k$)}
2191121910
with $k$ in the range of \range{1}{\exposid{rank_}}
2191221911
is representable as a value of type \tcode{index_type}.
@@ -21985,7 +21984,7 @@
2198521984
\item
2198621985
If \exposid{rank_} is greater than \tcode{1} and
2198721986
\tcode{padding_value} does not equal \tcode{dynamic_extent},
21988-
then \tcode{other.\linebreak stride(1)} equals
21987+
then \tcode{other.stride(1)} equals
2198921988
\begin{codeblock}
2199021989
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2199121990
extents_type::@\exposid{index-cast}@(other.extents().extent(0)))
@@ -22052,7 +22051,7 @@
2205222051
\item
2205322052
If \exposid{rank_} is greater than 1 and
2205422053
\tcode{padding_value} does not equal \tcode{dynamic_extent},
22055-
then \tcode{other.\linebreak stride(1)} equals
22054+
then \tcode{other.stride(1)} equals
2205622055
\begin{codeblock}
2205722056
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2205822057
extents_type::@\exposid{index-cast}@(other.extent(0)))
@@ -22450,7 +22449,7 @@
2245022449
if \exposid{static-padding-stride} is not \tcode{dynamic_extent}.
2245122450
\begin{note}
2245222451
Using \tcode{extents<index_type, \exposid{static-padding-stride}>}
22453-
instead of \tcode{index_type} as the type of \exposid{stride-\linebreak rm2}
22452+
instead of \tcode{index_type} as the type of \exposid{stride-rm2}
2245422453
would achieve this.
2245522454
\end{note}
2245622455
\end{itemdescr}
@@ -22533,13 +22532,13 @@
2253322532
\item
2253422533
If \exposid{rank_} is greater than one,
2253522534
then the product of
22536-
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\exposid{\linebreak rank_} - 1))} and
22535+
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\exposid{rank_} - 1))} and
2253722536
all values \tcode{ext.extent($k$)}
2253822537
with $k$ in the range of \range{0}{\exposid{rank_} - 1}
2253922538
is representable as a value of type \tcode{index_type}.
2254022539
\item
2254122540
If \tcode{padding_value} is not equal to \tcode{dynamic_extent},
22542-
\tcode{padding_value} equals \tcode{extents_type::\linebreak \exposid{index-cast}(pad)}.
22541+
\tcode{padding_value} equals \tcode{extents_type::\exposid{index-cast}(pad)}.
2254322542
\end{itemize}
2254422543

2254522544
\pnum
@@ -22612,7 +22611,7 @@
2261222611
\item
2261322612
If \exposid{rank_} is greater than 1 and
2261422613
\tcode{padding_value} does not equal \tcode{dynamic_extent},
22615-
then \tcode{other.\linebreak stride(\exposid{rank_} - 2)} equals
22614+
then \tcode{other.stride(\exposid{rank_} - 2)} equals
2261622615
\begin{codeblock}
2261722616
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2261822617
extents_type::@\exposid{index-cast}@(other.extents().extent(@\exposid{rank_}@ - 1)))
@@ -22680,7 +22679,7 @@
2268022679
\item
2268122680
If \exposid{rank_} is greater than 1 and
2268222681
\tcode{padding_value} does not equal \tcode{dynamic_extent},
22683-
then \tcode{other.\linebreak stride(\exposid{rank_} - 2)} equals
22682+
then \tcode{other.stride(\exposid{rank_} - 2)} equals
2268422683
\begin{codeblock}
2268522684
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2268622685
extents_type::@\exposid{index-cast}@(other.extent(@\exposid{rank_}@ - 1)))
@@ -24081,7 +24080,7 @@
2408124080
\item
2408224081
\tcode{stride(k) * \exposid{de-ice}($s_k$.stride)}
2408324082
if $S_k$ is a specialization of \tcode{strided_slice} and
24084-
\tcode{$s_k$.stride < $s_k$.\linebreak extent} is \tcode{true};
24083+
\tcode{$s_k$.stride < $s_k$.extent} is \tcode{true};
2408524084
\item
2408624085
otherwise, \tcode{stride($k$)}.
2408724086
\end{itemize}
@@ -24486,11 +24485,11 @@
2448624485
\begin{itemize}
2448724486
\item
2448824487
\tcode{decltype(submdspan_mapping(src.mapping(), slices...))}
24489-
is a specialization of \tcode{submd-\linebreak{}span_mapping_result}.
24488+
is a specialization of \tcode{submdspan_mapping_result}.
2449024489

2449124490
\item
2449224491
\tcode{is_same_v<remove_cvref_t<decltype(sub_map_offset.mapping.extents())>,}
24493-
\tcode{decltype(\linebreak{}submdspan_extents(src.mapping(), slices...))>}
24492+
\tcode{decltype(submdspan_extents(src.mapping(), slices...))>}
2449424493
is \tcode{true}.
2449524494

2449624495
\item
@@ -24520,11 +24519,11 @@
2452024519
\item
2452124520
$0 \le \tcode{\exposid{first_}<index_type, $k$>(slices...)}$
2452224521
$\le \tcode{\exposid{last_}<$k$>(src.extents(), slices...)}$
24523-
$\le \tcode{\linebreak{}src.extent($k$)}$
24522+
$\le \tcode{src.extent($k$)}$
2452424523
\end{itemize}
2452524524

2452624525
\item
24527-
\tcode{sub_map_offset.mapping.extents() == submdspan_extents(src.mapping(), slices...)}\linebreak
24526+
\tcode{sub_map_offset.mapping.extents() == submdspan_extents(src.mapping(), slices...)}
2452824527
is \tcode{true}; and
2452924528

2453024529
\item

source/exec.tex

+9-9
Original file line numberDiff line numberDiff line change
@@ -2794,7 +2794,7 @@
27942794
Let \tcode{out_sndr} and \tcode{env} be subexpressions
27952795
such that \tcode{OutSndr} is \tcode{decltype((out_sndr))}.
27962796
If \tcode{\exposconcept{sender-for}<Out\-Sndr, starts_on_t>} is \tcode{false},
2797-
then the expressions \tcode{starts_on.transform_env(out_sndr, env)} and\linebreak
2797+
then the expressions \tcode{starts_on.transform_env(out_sndr, env)} and
27982798
\tcode{starts_on.transform_sender(out_sndr, env)} are ill-formed; otherwise
27992799
\begin{itemize}
28002800
\item
@@ -3147,7 +3147,7 @@
31473147
\pnum
31483148
Let \tcode{out_sndr} and \tcode{env} be subexpressions,
31493149
let \tcode{OutSndr} be \tcode{decltype((out_sndr))}, and
3150-
let \tcode{Env} be \tcode{decltype((\linebreak env))}.
3150+
let \tcode{Env} be \tcode{decltype((env))}.
31513151
If \tcode{\exposconcept{sender-for}<OutSndr, on_t>} is \tcode{false},
31523152
then the expressions \tcode{on.transform_env(out_sndr, env)} and
31533153
\tcode{on.transform_sender(out_sndr, env)} are ill-formed.
@@ -3309,7 +3309,7 @@
33093309
For subexpressions \tcode{sndr} and \tcode{f},
33103310
if \tcode{decltype((sndr))} does not satisfy \libconcept{sender}, or
33113311
\tcode{decltype((f))} does not satisfy \exposconcept{movable-value},
3312-
\tcode{\exposid{then-cpo}(\linebreak sndr, f) }is ill-formed.
3312+
\tcode{\exposid{then-cpo}(sndr, f) }is ill-formed.
33133313

33143314
\pnum
33153315
Otherwise,
@@ -3478,7 +3478,7 @@
34783478
Let \tcode{LetSigs} be a pack of those types in \tcode{Sigs}
34793479
with a return type of \tcode{\exposid{decayed-typeof}<\exposid{set-cpo}>}.
34803480
Let \exposid{as-tuple} be an alias template
3481-
such that \tcode{\exposid{as-tuple}<\linebreak Tag(Args...)>} denotes
3481+
such that \tcode{\exposid{as-tuple}<Tag(Args...)>} denotes
34823482
the type \tcode{\exposid{decayed-tuple}<Args...>}.
34833483
Then \tcode{args_variant_t} denotes
34843484
the type \tcode{variant<monostate, \exposid{as-tuple}<LetSigs>...>}
@@ -3533,7 +3533,7 @@
35333533
Let \tcode{sndr} and \tcode{env} be subexpressions, and
35343534
let \tcode{Sndr} be \tcode{decltype((sndr))}.
35353535
If
3536-
\tcode{\exposconcept{sender-for}<Sndr, \exposid{decayed-\linebreak typeof}<\exposid{let-cpo}>>}
3536+
\tcode{\exposconcept{sender-for}<Sndr, \exposid{decayed-typeof}<\exposid{let-cpo}>>}
35373537
is \tcode{false},
35383538
then the expression \tcode{\exposid{let-cpo}.transform_env(sndr, env)}
35393539
is ill-formed.
@@ -4280,7 +4280,7 @@
42804280
\end{codeblock}
42814281
if the expression \tcode{\exposid{decayed-tuple}<decltype(as)...>\{as...\}}
42824282
is potentially throwing;
4283-
otherwise, \tcode{o.emplace(\linebreak as...)}.
4283+
otherwise, \tcode{o.emplace(as...)}.
42844284

42854285
\pnum
42864286
The expression \tcode{when_all_with_variant(sndrs...)}
@@ -4593,7 +4593,7 @@
45934593

45944594
\pnum
45954595
For a subexpression \tcode{sndr}, let \tcode{Sndr} be \tcode{decltype((sndr))}.
4596-
If \tcode{\libconcept{sender_to}<Sndr, \exposid{sync-wait-receiver}<\linebreak Sndr>>}
4596+
If \tcode{\libconcept{sender_to}<Sndr, \exposid{sync-wait-receiver}<Sndr>>}
45974597
is \tcode{false},
45984598
the expression \tcode{sync_wait.apply_sender(sndr)} is ill-formed;
45994599
otherwise, it is equivalent to:
@@ -4664,7 +4664,7 @@
46644664

46654665
\pnum
46664666
If \tcode{\exposconcept{callable}<sync_wait_t, Sndr>} is \tcode{false},
4667-
the expression \tcode{sync_wait_with_variant.apply_sender(\linebreak sndr)} is ill-formed.
4667+
the expression \tcode{sync_wait_with_variant.apply_sender(sndr)} is ill-formed.
46684668
Otherwise, it is equivalent to:
46694669
\begin{codeblock}
46704670
using result_type = @\exposid{sync-wait-with-variant-result-type}@<Sndr>;
@@ -4907,7 +4907,7 @@
49074907
Let \tcode{Es} be a pack of the types in the \exposid{type-list} named by
49084908
\tcode{\exposid{gather-signatures}<set_error_t, InputSigna\-tures, type_identity_t, \exposid{error-list}>},
49094909
where \exposid{error-list} is an alias template
4910-
such that \tcode{\exposid{error-list}<\linebreak Ts...>} is
4910+
such that \tcode{\exposid{error-list}<Ts...>} is
49114911
\tcode{\exposid{type-list}<SetError<Ts>...>}.
49124912

49134913
\pnum

source/locales.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -5005,7 +5005,7 @@
50055005
\returns
50065006
If \tcode{a.\exposid{mib_} == id::other \&\& b.\exposid{mib_} == id::other}
50075007
is \tcode{true},
5008-
then \tcode{\exposid{comp-name}(a.\exposid{name_},\linebreak{}b.\exposid{name_})}.
5008+
then \tcode{\exposid{comp-name}(a.\exposid{name_}, b.\exposid{name_})}.
50095009
Otherwise, \tcode{a.\exposid{mib_} == b.\exposid{mib_}}.
50105010
\end{itemdescr}
50115011

source/memory.tex

+3-3
Original file line numberDiff line numberDiff line change
@@ -1075,7 +1075,7 @@
10751075
\begin{itemize}
10761076
\item
10771077
If \tcode{uses_allocator_v<remove_cv_t<T>, Alloc>} is \tcode{false} and
1078-
\tcode{is_constructible_v<T,\linebreak Args...>} is \tcode{true},
1078+
\tcode{is_constructible_v<T, Args...>} is \tcode{true},
10791079
return \tcode{forward_as_tuple(std::forward<Args>(args)...)}.
10801080
\item
10811081
Otherwise, if \tcode{uses_allocator_v<remove_cv_t<T>, Alloc>} is \tcode{true} and
@@ -3996,7 +3996,7 @@
39963996
such that its \tcode{value_type} is \tcode{remove_cv_t<U>}.
39973997
\item
39983998
When a (sub)object of non-array type \tcode{U} is initialized by
3999-
\tcode{make_shared_for_overwrite} or\linebreak % avoid Overfull
3999+
\tcode{make_shared_for_overwrite} or
40004000
\tcode{allocate_shared_for_overwrite},
40014001
it is initialized via the expression \tcode{::new(pv) U},
40024002
where \tcode{pv} has type \tcode{void*} and
@@ -5229,7 +5229,7 @@
52295229
\end{codeblock}
52305230
if the expression
52315231
\tcode{s.reset(static_cast<SP>(p), std::forward<Args>(args)...)}
5232-
is well-\linebreak formed;
5232+
is well-formed;
52335233
\item
52345234
otherwise,
52355235
\begin{codeblock}

source/meta.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -2160,7 +2160,7 @@
21602160
\item Let \tcode{R} be \tcode{\placeholdernc{COMMON-REF}(T1, T2)}.
21612161
If \tcode{T1} and \tcode{T2} are reference types,
21622162
\tcode{R} is well-formed, and
2163-
\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},
2163+
\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},
21642164
then the member typedef \tcode{type} denotes \tcode{R}.
21652165

21662166
\item Otherwise, if

source/numerics.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -13684,7 +13684,7 @@
1368413684
\mandates
1368513685
Let \tcode{a} be
1368613686
\tcode{\exposid{abs-if-needed}(declval<typename InVec::value_type>())}.
13687-
Then, \tcode{decltype(\linebreak init + a * a} is convertible to \tcode{Scalar}.
13687+
Then, \tcode{decltype(init + a * a} is convertible to \tcode{Scalar}.
1368813688

1368913689
\pnum
1369013690
\returns
@@ -13890,7 +13890,7 @@
1389013890
\mandates
1389113891
Let \tcode{a} be
1389213892
\tcode{\exposid{abs-if-needed}(declval<typename InMat::value_type>())}.
13893-
Then, \tcode{decltype(\linebreak init + a * a)}
13893+
Then, \tcode{decltype(init + a * a)}
1389413894
is convertible to \tcode{Scalar}.
1389513895

1389613896
\pnum

0 commit comments

Comments
 (0)