Skip to content

Commit 8cf6b20

Browse files
committed
Remove awkward \linebreaks.
1 parent 06b78a1 commit 8cf6b20

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
@@ -10636,7 +10635,7 @@
1063610635
\pnum
1063710636
The expression
1063810637
\tcode{\exposid{is-vector-bool-reference}<T>} is \tcode{true}
10639-
if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::\linebreak{}reference}
10638+
if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::reference}
1064010639
for some type \tcode{Alloc} and
1064110640
\tcode{vector<bool, Alloc>} is not a program-defined specialization.
1064210641
\end{itemdescr}
@@ -12028,7 +12027,7 @@
1202812027
Otherwise, let \tcode{r} be \tcode{equal_range(k)}.
1202912028
Constructs an object \tcode{u} of type \tcode{value_type} with
1203012029
\tcode{piecewise_construct, forward_as_tuple(std::forward<K>(k)),
12031-
forward_as_tuple(std::forward<Args>(args)...)}.\linebreak
12030+
forward_as_tuple(std::forward<Args>(args)...)}.
1203212031
If \tcode{equal_range(u.first) == r} is \tcode{false},
1203312032
the behavior is undefined.
1203412033
Inserts \tcode{u} into \tcode{*this}.
@@ -17514,7 +17513,7 @@
1751417513
\pnum
1751517514
\effects
1751617515
Equivalent to \tcode{flat_map(s, key_cont, mapped_cont)} and
17517-
\tcode{flat_map(s, key_cont, \linebreak{}mapped_cont, comp)}, respectively,
17516+
\tcode{flat_map(s, key_cont, mapped_cont, comp)}, respectively,
1751817517
except that \tcode{\exposid{c}.keys} and \tcode{\exposid{c}.values} are constructed
1751917518
with uses-allocator construction\iref{allocator.uses.construction}.
1752017519

@@ -17698,7 +17697,7 @@
1769817697
\pnum
1769917698
\effects
1770017699
Initializes an object \tcode{t} of type \tcode{pair<key_type, mapped_type>}
17701-
with \tcode{std::forward<Args>(\linebreak args)...};
17700+
with \tcode{std::forward<Args>(args)...};
1770217701
if the map already contains an element
1770317702
whose key is equivalent to \tcode{t.first},
1770417703
\tcode{*this} is unchanged.
@@ -17975,7 +17974,7 @@
1797517974
\effects
1797617975
If the map already contains an element \tcode{e}
1797717976
whose key is equivalent to \tcode{k},
17978-
assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}.
17977+
assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}.
1797917978
Otherwise, equivalent to
1798017979
\begin{codeblock}
1798117980
try_emplace(std::forward<decltype(k)>(k), std::forward<M>(obj))
@@ -18030,7 +18029,7 @@
1803018029
\effects
1803118030
If the map already contains an element \tcode{e}
1803218031
whose key is equivalent to \tcode{k},
18033-
assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}.
18032+
assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}.
1803418033
Otherwise, equivalent to
1803518034
\begin{codeblock}
1803618035
try_emplace(std::forward<K>(k), std::forward<M>(obj))
@@ -18644,14 +18643,14 @@
1864418643
\pnum
1864518644
\effects
1864618645
Equivalent to \tcode{flat_multimap(key_cont, mapped_cont)} and
18647-
\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively,
18646+
\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively,
1864818647
except that \tcode{\exposid{c}.keys} and \tcode{\exposid{c}.values} are constructed
1864918648
with uses-allocator construction\iref{allocator.uses.construction}.
1865018649

1865118650
\pnum
1865218651
\complexity
1865318652
Same as \tcode{flat_multimap(key_cont, mapped_cont)} and
18654-
\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively.
18653+
\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively.
1865518654
\end{itemdescr}
1865618655

1865718656
\indexlibraryctor{flat_multimap}%
@@ -23204,7 +23203,7 @@
2320423203
\item
2320523204
If \exposid{rank_} is greater than one,
2320623205
then the product of
23207-
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\linebreak 0))} and
23206+
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(0))} and
2320823207
all values \tcode{ext.extent($k$)}
2320923208
with $k$ in the range of \range{1}{\exposid{rank_}}
2321023209
is representable as a value of type \tcode{index_type}.
@@ -23283,7 +23282,7 @@
2328323282
\item
2328423283
If \exposid{rank_} is greater than \tcode{1} and
2328523284
\tcode{padding_value} does not equal \tcode{dynamic_extent},
23286-
then \tcode{other.\linebreak stride(1)} equals
23285+
then \tcode{other.stride(1)} equals
2328723286
\begin{codeblock}
2328823287
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2328923288
extents_type::@\exposid{index-cast}@(other.extents().extent(0)))
@@ -23350,7 +23349,7 @@
2335023349
\item
2335123350
If \exposid{rank_} is greater than 1 and
2335223351
\tcode{padding_value} does not equal \tcode{dynamic_extent},
23353-
then \tcode{other.\linebreak stride(1)} equals
23352+
then \tcode{other.stride(1)} equals
2335423353
\begin{codeblock}
2335523354
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2335623355
extents_type::@\exposid{index-cast}@(other.extent(0)))
@@ -23748,7 +23747,7 @@
2374823747
if \exposid{static-padding-stride} is not \tcode{dynamic_extent}.
2374923748
\begin{note}
2375023749
Using \tcode{extents<index_type, \exposid{static-padding-stride}>}
23751-
instead of \tcode{index_type} as the type of \exposid{stride-\linebreak rm2}
23750+
instead of \tcode{index_type} as the type of \exposid{stride-rm2}
2375223751
would achieve this.
2375323752
\end{note}
2375423753
\end{itemdescr}
@@ -23831,13 +23830,13 @@
2383123830
\item
2383223831
If \exposid{rank_} is greater than one,
2383323832
then the product of
23834-
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\exposid{\linebreak rank_} - 1))} and
23833+
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\exposid{rank_} - 1))} and
2383523834
all values \tcode{ext.extent($k$)}
2383623835
with $k$ in the range of \range{0}{\exposid{rank_} - 1}
2383723836
is representable as a value of type \tcode{index_type}.
2383823837
\item
2383923838
If \tcode{padding_value} is not equal to \tcode{dynamic_extent},
23840-
\tcode{padding_value} equals \tcode{extents_type::\linebreak \exposid{index-cast}(pad)}.
23839+
\tcode{padding_value} equals \tcode{extents_type::\exposid{index-cast}(pad)}.
2384123840
\end{itemize}
2384223841

2384323842
\pnum
@@ -23910,7 +23909,7 @@
2391023909
\item
2391123910
If \exposid{rank_} is greater than 1 and
2391223911
\tcode{padding_value} does not equal \tcode{dynamic_extent},
23913-
then \tcode{other.\linebreak stride(\exposid{rank_} - 2)} equals
23912+
then \tcode{other.stride(\exposid{rank_} - 2)} equals
2391423913
\begin{codeblock}
2391523914
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2391623915
extents_type::@\exposid{index-cast}@(other.extents().extent(@\exposid{rank_}@ - 1)))
@@ -23978,7 +23977,7 @@
2397823977
\item
2397923978
If \exposid{rank_} is greater than 1 and
2398023979
\tcode{padding_value} does not equal \tcode{dynamic_extent},
23981-
then \tcode{other.\linebreak stride(\exposid{rank_} - 2)} equals
23980+
then \tcode{other.stride(\exposid{rank_} - 2)} equals
2398223981
\begin{codeblock}
2398323982
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2398423983
extents_type::@\exposid{index-cast}@(other.extent(@\exposid{rank_}@ - 1)))
@@ -25567,7 +25566,7 @@
2556725566
\item
2556825567
\tcode{stride(k) * \exposid{de-ice}($s_k$.stride)}
2556925568
if $S_k$ is a specialization of \tcode{strided_slice} and
25570-
\tcode{$s_k$.stride < $s_k$.\linebreak extent} is \tcode{true};
25569+
\tcode{$s_k$.stride < $s_k$.extent} is \tcode{true};
2557125570
\item
2557225571
otherwise, \tcode{stride($k$)}.
2557325572
\end{itemize}
@@ -25965,11 +25964,11 @@
2596525964
\begin{itemize}
2596625965
\item
2596725966
\tcode{decltype(submdspan_mapping(src.mapping(), slices...))}
25968-
is a specialization of \tcode{submd-\linebreak{}span_mapping_result}.
25967+
is a specialization of \tcode{submdspan_mapping_result}.
2596925968

2597025969
\item
2597125970
\tcode{is_same_v<remove_cvref_t<decltype(sub_map_offset.mapping.extents())>,}
25972-
\tcode{decltype(\linebreak{}submdspan_extents(src.mapping(), slices...))>}
25971+
\tcode{decltype(submdspan_extents(src.mapping(), slices...))>}
2597325972
is \tcode{true}.
2597425973

2597525974
\item
@@ -25999,11 +25998,11 @@
2599925998
\item
2600025999
$0 \le \tcode{\exposid{first_}<index_type, $k$>(slices...)}$
2600126000
$\le \tcode{\exposid{last_}<$k$>(src.extents(), slices...)}$
26002-
$\le \tcode{\linebreak{}src.extent($k$)}$
26001+
$\le \tcode{src.extent($k$)}$
2600326002
\end{itemize}
2600426003

2600526004
\item
26006-
\tcode{sub_map_offset.mapping.extents() == submdspan_extents(src.mapping(), slices...)}\linebreak
26005+
\tcode{sub_map_offset.mapping.extents() == submdspan_extents(src.mapping(), slices...)}
2600726006
is \tcode{true}; and
2600826007

2600926008
\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)