Skip to content

Commit e7834d4

Browse files
committed
Remove awkward \linebreaks.
1 parent 3b3e2f2 commit e7834d4

8 files changed

+63
-64
lines changed

source/algorithms.tex

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

source/containers.tex

+24-25
Original file line numberDiff line numberDiff line change
@@ -2444,8 +2444,7 @@
24442444
Assigns \tcode{nh.ptr_} to \tcode{ptr_}.
24452445
\item
24462446
If \tcode{!alloc\textunderscore} or \tcode{ator_traits::propagate_on_container_move_assignment::value}
2447-
is \tcode{true}, \linebreak
2448-
move assigns \tcode{nh.alloc_} to \tcode{alloc_}.
2447+
is \tcode{true}, move assigns \tcode{nh.alloc_} to \tcode{alloc_}.
24492448
\item
24502449
Assigns
24512450
\keyword{nullptr} to \tcode{nh.ptr_} and assigns \tcode{nullopt} to
@@ -7478,14 +7477,14 @@
74787477
\pnum
74797478
\expects
74807479
\tcode{T} is \oldconcept{EmplaceConstructible} into \tcode{forward_list}
7481-
from \tcode{std::forward<Args>(\linebreak args)...}.
7480+
from \tcode{std::forward<Args>(args)...}.
74827481
\tcode{position} is \tcode{before_begin()} or is a dereferenceable
74837482
iterator in the range \range{begin()}{end()}.
74847483

74857484
\pnum
74867485
\effects
74877486
Inserts an object of type \tcode{value_type} direct-non-list-initialized with
7488-
\tcode{std::forward<Args>(\linebreak args)...} after \tcode{position}.
7487+
\tcode{std::forward<Args>(args)...} after \tcode{position}.
74897488

74907489
\pnum
74917490
\returns
@@ -10642,7 +10641,7 @@
1064210641
\pnum
1064310642
The expression
1064410643
\tcode{\exposid{is-vector-bool-reference}<T>} is \tcode{true}
10645-
if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::\linebreak{}reference}
10644+
if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::reference}
1064610645
for some type \tcode{Alloc} and
1064710646
\tcode{vector<bool, Alloc>} is not a program-defined specialization.
1064810647
\end{itemdescr}
@@ -12034,7 +12033,7 @@
1203412033
Otherwise, let \tcode{r} be \tcode{equal_range(k)}.
1203512034
Constructs an object \tcode{u} of type \tcode{value_type} with
1203612035
\tcode{piecewise_construct, forward_as_tuple(std::forward<K>(k)),
12037-
forward_as_tuple(std::forward<Args>(args)...)}.\linebreak
12036+
forward_as_tuple(std::forward<Args>(args)...)}.
1203812037
If \tcode{equal_range(u.first) == r} is \tcode{false},
1203912038
the behavior is undefined.
1204012039
Inserts \tcode{u} into \tcode{*this}.
@@ -17520,7 +17519,7 @@
1752017519
\pnum
1752117520
\effects
1752217521
Equivalent to \tcode{flat_map(s, key_cont, mapped_cont)} and
17523-
\tcode{flat_map(s, key_cont, \linebreak{}mapped_cont, comp)}, respectively,
17522+
\tcode{flat_map(s, key_cont, mapped_cont, comp)}, respectively,
1752417523
except that \tcode{\exposid{c}.keys} and \tcode{\exposid{c}.values} are constructed
1752517524
with uses-allocator construction\iref{allocator.uses.construction}.
1752617525

@@ -17704,7 +17703,7 @@
1770417703
\pnum
1770517704
\effects
1770617705
Initializes an object \tcode{t} of type \tcode{pair<key_type, mapped_type>}
17707-
with \tcode{std::forward<Args>(\linebreak args)...};
17706+
with \tcode{std::forward<Args>(args)...};
1770817707
if the map already contains an element
1770917708
whose key is equivalent to \tcode{t.first},
1771017709
\tcode{*this} is unchanged.
@@ -17981,7 +17980,7 @@
1798117980
\effects
1798217981
If the map already contains an element \tcode{e}
1798317982
whose key is equivalent to \tcode{k},
17984-
assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}.
17983+
assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}.
1798517984
Otherwise, equivalent to
1798617985
\begin{codeblock}
1798717986
try_emplace(std::forward<decltype(k)>(k), std::forward<M>(obj))
@@ -18036,7 +18035,7 @@
1803618035
\effects
1803718036
If the map already contains an element \tcode{e}
1803818037
whose key is equivalent to \tcode{k},
18039-
assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}.
18038+
assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}.
1804018039
Otherwise, equivalent to
1804118040
\begin{codeblock}
1804218041
try_emplace(std::forward<K>(k), std::forward<M>(obj))
@@ -18650,14 +18649,14 @@
1865018649
\pnum
1865118650
\effects
1865218651
Equivalent to \tcode{flat_multimap(key_cont, mapped_cont)} and
18653-
\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively,
18652+
\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively,
1865418653
except that \tcode{\exposid{c}.keys} and \tcode{\exposid{c}.values} are constructed
1865518654
with uses-allocator construction\iref{allocator.uses.construction}.
1865618655

1865718656
\pnum
1865818657
\complexity
1865918658
Same as \tcode{flat_multimap(key_cont, mapped_cont)} and
18660-
\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively.
18659+
\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively.
1866118660
\end{itemdescr}
1866218661

1866318662
\indexlibraryctor{flat_multimap}%
@@ -23210,7 +23209,7 @@
2321023209
\item
2321123210
If \exposid{rank_} is greater than one,
2321223211
then the product of
23213-
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\linebreak 0))} and
23212+
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(0))} and
2321423213
all values \tcode{ext.extent($k$)}
2321523214
with $k$ in the range of \range{1}{\exposid{rank_}}
2321623215
is representable as a value of type \tcode{index_type}.
@@ -23289,7 +23288,7 @@
2328923288
\item
2329023289
If \exposid{rank_} is greater than \tcode{1} and
2329123290
\tcode{padding_value} does not equal \tcode{dynamic_extent},
23292-
then \tcode{other.\linebreak stride(1)} equals
23291+
then \tcode{other.stride(1)} equals
2329323292
\begin{codeblock}
2329423293
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2329523294
extents_type::@\exposid{index-cast}@(other.extents().extent(0)))
@@ -23356,7 +23355,7 @@
2335623355
\item
2335723356
If \exposid{rank_} is greater than 1 and
2335823357
\tcode{padding_value} does not equal \tcode{dynamic_extent},
23359-
then \tcode{other.\linebreak stride(1)} equals
23358+
then \tcode{other.stride(1)} equals
2336023359
\begin{codeblock}
2336123360
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2336223361
extents_type::@\exposid{index-cast}@(other.extent(0)))
@@ -23754,7 +23753,7 @@
2375423753
if \exposid{static-padding-stride} is not \tcode{dynamic_extent}.
2375523754
\begin{note}
2375623755
Using \tcode{extents<index_type, \exposid{static-padding-stride}>}
23757-
instead of \tcode{index_type} as the type of \exposid{stride-\linebreak rm2}
23756+
instead of \tcode{index_type} as the type of \exposid{stride-rm2}
2375823757
would achieve this.
2375923758
\end{note}
2376023759
\end{itemdescr}
@@ -23837,13 +23836,13 @@
2383723836
\item
2383823837
If \exposid{rank_} is greater than one,
2383923838
then the product of
23840-
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\exposid{\linebreak rank_} - 1))} and
23839+
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\exposid{rank_} - 1))} and
2384123840
all values \tcode{ext.extent($k$)}
2384223841
with $k$ in the range of \range{0}{\exposid{rank_} - 1}
2384323842
is representable as a value of type \tcode{index_type}.
2384423843
\item
2384523844
If \tcode{padding_value} is not equal to \tcode{dynamic_extent},
23846-
\tcode{padding_value} equals \tcode{extents_type::\linebreak \exposid{index-cast}(pad)}.
23845+
\tcode{padding_value} equals \tcode{extents_type::\exposid{index-cast}(pad)}.
2384723846
\end{itemize}
2384823847

2384923848
\pnum
@@ -23916,7 +23915,7 @@
2391623915
\item
2391723916
If \exposid{rank_} is greater than 1 and
2391823917
\tcode{padding_value} does not equal \tcode{dynamic_extent},
23919-
then \tcode{other.\linebreak stride(\exposid{rank_} - 2)} equals
23918+
then \tcode{other.stride(\exposid{rank_} - 2)} equals
2392023919
\begin{codeblock}
2392123920
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2392223921
extents_type::@\exposid{index-cast}@(other.extents().extent(@\exposid{rank_}@ - 1)))
@@ -23984,7 +23983,7 @@
2398423983
\item
2398523984
If \exposid{rank_} is greater than 1 and
2398623985
\tcode{padding_value} does not equal \tcode{dynamic_extent},
23987-
then \tcode{other.\linebreak stride(\exposid{rank_} - 2)} equals
23986+
then \tcode{other.stride(\exposid{rank_} - 2)} equals
2398823987
\begin{codeblock}
2398923988
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2399023989
extents_type::@\exposid{index-cast}@(other.extent(@\exposid{rank_}@ - 1)))
@@ -25573,7 +25572,7 @@
2557325572
\item
2557425573
\tcode{stride(k) * \exposid{de-ice}($s_k$.stride)}
2557525574
if $S_k$ is a specialization of \tcode{strided_slice} and
25576-
\tcode{$s_k$.stride < $s_k$.\linebreak extent} is \tcode{true};
25575+
\tcode{$s_k$.stride < $s_k$.extent} is \tcode{true};
2557725576
\item
2557825577
otherwise, \tcode{stride($k$)}.
2557925578
\end{itemize}
@@ -25971,11 +25970,11 @@
2597125970
\begin{itemize}
2597225971
\item
2597325972
\tcode{decltype(submdspan_mapping(src.mapping(), slices...))}
25974-
is a specialization of \tcode{submd-\linebreak{}span_mapping_result}.
25973+
is a specialization of \tcode{submdspan_mapping_result}.
2597525974

2597625975
\item
2597725976
\tcode{is_same_v<remove_cvref_t<decltype(sub_map_offset.mapping.extents())>,}
25978-
\tcode{decltype(\linebreak{}submdspan_extents(src.mapping(), slices...))>}
25977+
\tcode{decltype(submdspan_extents(src.mapping(), slices...))>}
2597925978
is \tcode{true}.
2598025979

2598125980
\item
@@ -26005,11 +26004,11 @@
2600526004
\item
2600626005
$0 \le \tcode{\exposid{first_}<index_type, $k$>(slices...)}$
2600726006
$\le \tcode{\exposid{last_}<$k$>(src.extents(), slices...)}$
26008-
$\le \tcode{\linebreak{}src.extent($k$)}$
26007+
$\le \tcode{src.extent($k$)}$
2600926008
\end{itemize}
2601026009

2601126010
\item
26012-
\tcode{sub_map_offset.mapping.extents() == submdspan_extents(src.mapping(), slices...)}\linebreak
26011+
\tcode{sub_map_offset.mapping.extents() == submdspan_extents(src.mapping(), slices...)}
2601326012
is \tcode{true}; and
2601426013

2601526014
\item

source/exec.tex

+9-9
Original file line numberDiff line numberDiff line change
@@ -2831,7 +2831,7 @@
28312831
Let \tcode{out_sndr} and \tcode{env} be subexpressions
28322832
such that \tcode{OutSndr} is \tcode{decltype((out_sndr))}.
28332833
If \tcode{\exposconcept{sender-for}<Out\-Sndr, starts_on_t>} is \tcode{false},
2834-
then the expressions \tcode{starts_on.transform_env(out_sndr, env)} and\linebreak
2834+
then the expressions \tcode{starts_on.transform_env(out_sndr, env)} and
28352835
\tcode{starts_on.transform_sender(out_sndr, env)} are ill-formed; otherwise
28362836
\begin{itemize}
28372837
\item
@@ -3183,7 +3183,7 @@
31833183
\pnum
31843184
Let \tcode{out_sndr} and \tcode{env} be subexpressions,
31853185
let \tcode{OutSndr} be \tcode{decltype((out_sndr))}, and
3186-
let \tcode{Env} be \tcode{decltype((\linebreak env))}.
3186+
let \tcode{Env} be \tcode{decltype((env))}.
31873187
If \tcode{\exposconcept{sender-for}<OutSndr, on_t>} is \tcode{false},
31883188
then the expressions \tcode{on.transform_env(out_sndr, env)} and
31893189
\tcode{on.transform_sender(out_sndr, env)} are ill-formed.
@@ -3345,7 +3345,7 @@
33453345
For subexpressions \tcode{sndr} and \tcode{f},
33463346
if \tcode{decltype((sndr))} does not satisfy \libconcept{sender}, or
33473347
\tcode{decltype((f))} does not satisfy \exposconcept{movable-value},
3348-
\tcode{\exposid{then-cpo}(\linebreak sndr, f) }is ill-formed.
3348+
\tcode{\exposid{then-cpo}(sndr, f) }is ill-formed.
33493349

33503350
\pnum
33513351
Otherwise,
@@ -3526,7 +3526,7 @@
35263526
Let \tcode{LetSigs} be a pack of those types in \tcode{Sigs}
35273527
with a return type of \tcode{\exposid{decayed-typeof}<\exposid{set-cpo}>}.
35283528
Let \exposid{as-tuple} be an alias template
3529-
such that \tcode{\exposid{as-tuple}<\linebreak Tag(Args...)>} denotes
3529+
such that \tcode{\exposid{as-tuple}<Tag(Args...)>} denotes
35303530
the type \tcode{\exposid{decayed-tuple}<Args...>}.
35313531
Then \tcode{args_variant_t} denotes
35323532
the type \tcode{variant<monostate, \exposid{as-tuple}<LetSigs>...>}
@@ -3581,7 +3581,7 @@
35813581
Let \tcode{sndr} and \tcode{env} be subexpressions, and
35823582
let \tcode{Sndr} be \tcode{decltype((sndr))}.
35833583
If
3584-
\tcode{\exposconcept{sender-for}<Sndr, \exposid{decayed-\linebreak typeof}<\exposid{let-cpo}>>}
3584+
\tcode{\exposconcept{sender-for}<Sndr, \exposid{decayed-typeof}<\exposid{let-cpo}>>}
35853585
is \tcode{false},
35863586
then the expression \tcode{\exposid{let-cpo}.transform_env(sndr, env)}
35873587
is ill-formed.
@@ -4338,7 +4338,7 @@
43384338
\end{codeblock}
43394339
if the expression \tcode{\exposid{decayed-tuple}<decltype(as)...>\{as...\}}
43404340
is potentially throwing;
4341-
otherwise, \tcode{o.emplace(\linebreak as...)}.
4341+
otherwise, \tcode{o.emplace(as...)}.
43424342

43434343
\pnum
43444344
The expression \tcode{when_all_with_variant(sndrs...)}
@@ -4651,7 +4651,7 @@
46514651

46524652
\pnum
46534653
For a subexpression \tcode{sndr}, let \tcode{Sndr} be \tcode{decltype((sndr))}.
4654-
If \tcode{\libconcept{sender_to}<Sndr, \exposid{sync-wait-receiver}<\linebreak Sndr>>}
4654+
If \tcode{\libconcept{sender_to}<Sndr, \exposid{sync-wait-receiver}<Sndr>>}
46554655
is \tcode{false},
46564656
the expression \tcode{sync_wait.apply_sender(sndr)} is ill-formed;
46574657
otherwise, it is equivalent to:
@@ -4722,7 +4722,7 @@
47224722

47234723
\pnum
47244724
If \tcode{\exposconcept{callable}<sync_wait_t, Sndr>} is \tcode{false},
4725-
the expression \tcode{sync_wait_with_variant.apply_sender(\linebreak sndr)} is ill-formed.
4725+
the expression \tcode{sync_wait_with_variant.apply_sender(sndr)} is ill-formed.
47264726
Otherwise, it is equivalent to:
47274727
\begin{codeblock}
47284728
using result_type = @\exposid{sync-wait-with-variant-result-type}@<Sndr>;
@@ -4963,7 +4963,7 @@
49634963
Let \tcode{Es} be a pack of the types in the \exposid{type-list} named by
49644964
\tcode{\exposid{gather-signatures}<set_error_t, InputSigna\-tures, type_identity_t, \exposid{error-list}>},
49654965
where \exposid{error-list} is an alias template
4966-
such that \tcode{\exposid{error-list}<\linebreak Ts...>} is
4966+
such that \tcode{\exposid{error-list}<Ts...>} is
49674967
\tcode{\exposid{type-list}<SetError<Ts>...>}.
49684968

49694969
\pnum

source/memory.tex

+3-3
Original file line numberDiff line numberDiff line change
@@ -1255,7 +1255,7 @@
12551255
\begin{itemize}
12561256
\item
12571257
If \tcode{uses_allocator_v<remove_cv_t<T>, Alloc>} is \tcode{false} and
1258-
\tcode{is_constructible_v<T,\linebreak Args...>} is \tcode{true},
1258+
\tcode{is_constructible_v<T, Args...>} is \tcode{true},
12591259
return \tcode{forward_as_tuple(std::forward<Args>(args)...)}.
12601260
\item
12611261
Otherwise, if \tcode{uses_allocator_v<remove_cv_t<T>, Alloc>} is \tcode{true} and
@@ -4188,7 +4188,7 @@
41884188
the allocator \tcode{a} passed to \tcode{allocate_shared}.
41894189
\item
41904190
When a (sub)object of non-array type \tcode{U} is initialized by
4191-
\tcode{make_shared_for_overwrite} or\linebreak % avoid Overfull
4191+
\tcode{make_shared_for_overwrite} or
41924192
\tcode{allocate_shared_for_overwrite},
41934193
it is initialized via the expression \tcode{::new(pv) U},
41944194
where \tcode{pv} has type \tcode{void*} and
@@ -5423,7 +5423,7 @@
54235423
\end{codeblock}
54245424
if the expression
54255425
\tcode{s.reset(static_cast<SP>(p), std::forward<Args>(args)...)}
5426-
is well-\linebreak formed;
5426+
is well-formed;
54275427
\item
54285428
otherwise,
54295429
\begin{codeblock}

source/meta.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -2178,7 +2178,7 @@
21782178
\item Let \tcode{R} be \tcode{\placeholdernc{COMMON-REF}(T1, T2)}.
21792179
If \tcode{T1} and \tcode{T2} are reference types,
21802180
\tcode{R} is well-formed, and
2181-
\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},
2181+
\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},
21822182
then the member typedef \tcode{type} denotes \tcode{R}.
21832183

21842184
\item Otherwise, if

source/numerics.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -13781,7 +13781,7 @@
1378113781
\mandates
1378213782
Let \tcode{a} be
1378313783
\tcode{\exposid{abs-if-needed}(declval<typename InVec::value_type>())}.
13784-
Then, \tcode{decltype(\linebreak init + a * a} is convertible to \tcode{Scalar}.
13784+
Then, \tcode{decltype(init + a * a} is convertible to \tcode{Scalar}.
1378513785

1378613786
\pnum
1378713787
\returns
@@ -13987,7 +13987,7 @@
1398713987
\mandates
1398813988
Let \tcode{a} be
1398913989
\tcode{\exposid{abs-if-needed}(declval<typename InMat::value_type>())}.
13990-
Then, \tcode{decltype(\linebreak init + a * a)}
13990+
Then, \tcode{decltype(init + a * a)}
1399113991
is convertible to \tcode{Scalar}.
1399213992

1399313993
\pnum

0 commit comments

Comments
 (0)