Skip to content

Commit bf2612c

Browse files
committed
Remove awkward \linebreaks.
1 parent 14268b0 commit bf2612c

File tree

8 files changed

+63
-64
lines changed

8 files changed

+63
-64
lines changed

source/algorithms.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -5602,7 +5602,7 @@
56025602
\tcode{invoke(op, invoke(proj, *(first1 + (i - result))))}
56035603
for unary transforms defined in namespace \tcode{ranges};
56045604
\item
5605-
\tcode{invoke(binary_op, invoke(proj1, *(first1 + (i - result))), invoke(proj2,\linebreak *(first2 + (i - result))))}
5605+
\tcode{invoke(binary_op, invoke(proj1, *(first1 + (i - result))), invoke(proj2, *(first2 + (i - result))))}
56065606
for binary transforms defined in namespace \tcode{ranges}.
56075607
\end{itemize}
56085608
\end{itemize}

source/containers.tex

+24-25
Original file line numberDiff line numberDiff line change
@@ -2373,8 +2373,7 @@
23732373
Assigns \tcode{nh.ptr_} to \tcode{ptr_}.
23742374
\item
23752375
If \tcode{!alloc\textunderscore} or \tcode{ator_traits::propagate_on_container_move_assignment::value}
2376-
is \tcode{true}, \linebreak
2377-
move assigns \tcode{nh.alloc_} to \tcode{alloc_}.
2376+
is \tcode{true}, move assigns \tcode{nh.alloc_} to \tcode{alloc_}.
23782377
\item
23792378
Assigns
23802379
\keyword{nullptr} to \tcode{nh.ptr_} and assigns \tcode{nullopt} to
@@ -7389,14 +7388,14 @@
73897388
\pnum
73907389
\expects
73917390
\tcode{T} is \oldconcept{EmplaceConstructible} into \tcode{forward_list}
7392-
from \tcode{std::forward<Args>(\linebreak args)...}.
7391+
from \tcode{std::forward<Args>(args)...}.
73937392
\tcode{position} is \tcode{before_begin()} or is a dereferenceable
73947393
iterator in the range \range{begin()}{end()}.
73957394

73967395
\pnum
73977396
\effects
73987397
Inserts an object of type \tcode{value_type} direct-non-list-initialized with
7399-
\tcode{std::forward<Args>(\linebreak args)...} after \tcode{position}.
7398+
\tcode{std::forward<Args>(args)...} after \tcode{position}.
74007399

74017400
\pnum
74027401
\returns
@@ -9418,7 +9417,7 @@
94189417
\pnum
94199418
The expression
94209419
\tcode{\exposid{is-vector-bool-reference}<T>} is \tcode{true}
9421-
if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::\linebreak{}reference}
9420+
if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::reference}
94229421
for some type \tcode{Alloc} and
94239422
\tcode{vector<bool, Alloc>} is not a program-defined specialization.
94249423
\end{itemdescr}
@@ -10809,7 +10808,7 @@
1080910808
Otherwise, let \tcode{r} be \tcode{equal_range(k)}.
1081010809
Constructs an object \tcode{u} of type \tcode{value_type} with
1081110810
\tcode{piecewise_construct, forward_as_tuple(std::forward<K>(k)),
10812-
forward_as_tuple(std::forward<Args>(args)...)}.\linebreak
10811+
forward_as_tuple(std::forward<Args>(args)...)}.
1081310812
If \tcode{equal_range(u.first) == r} is \tcode{false},
1081410813
the behavior is undefined.
1081510814
Inserts \tcode{u} into \tcode{*this}.
@@ -16266,7 +16265,7 @@
1626616265
\pnum
1626716266
\effects
1626816267
Equivalent to \tcode{flat_map(s, key_cont, mapped_cont)} and
16269-
\tcode{flat_map(s, key_cont, \linebreak{}mapped_cont, comp)}, respectively,
16268+
\tcode{flat_map(s, key_cont, mapped_cont, comp)}, respectively,
1627016269
except that \tcode{c.keys} and \tcode{c.values} are constructed
1627116270
with uses-allocator construction\iref{allocator.uses.construction}.
1627216271

@@ -16449,7 +16448,7 @@
1644916448
\pnum
1645016449
\effects
1645116450
Initializes an object \tcode{t} of type \tcode{pair<key_type, mapped_type>}
16452-
with \tcode{std::forward<Args>(\linebreak args)...};
16451+
with \tcode{std::forward<Args>(args)...};
1645316452
if the map already contains an element
1645416453
whose key is equivalent to \tcode{t.first},
1645516454
\tcode{*this} is unchanged.
@@ -16726,7 +16725,7 @@
1672616725
\effects
1672716726
If the map already contains an element \tcode{e}
1672816727
whose key is equivalent to \tcode{k},
16729-
assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}.
16728+
assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}.
1673016729
Otherwise, equivalent to
1673116730
\begin{codeblock}
1673216731
try_emplace(std::forward<decltype(k)>(k), std::forward<M>(obj))
@@ -16781,7 +16780,7 @@
1678116780
\effects
1678216781
If the map already contains an element \tcode{e}
1678316782
whose key is equivalent to \tcode{k},
16784-
assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}.
16783+
assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}.
1678516784
Otherwise, equivalent to
1678616785
\begin{codeblock}
1678716786
try_emplace(std::forward<K>(k), std::forward<M>(obj))
@@ -17386,14 +17385,14 @@
1738617385
\pnum
1738717386
\effects
1738817387
Equivalent to \tcode{flat_multimap(key_cont, mapped_cont)} and
17389-
\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively,
17388+
\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively,
1739017389
except that \tcode{c.keys} and \tcode{c.values} are constructed
1739117390
with uses-allocator construction\iref{allocator.uses.construction}.
1739217391

1739317392
\pnum
1739417393
\complexity
1739517394
Same as \tcode{flat_multimap(key_cont, mapped_cont)} and
17396-
\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively.
17395+
\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively.
1739717396
\end{itemdescr}
1739817397

1739917398
\indexlibraryctor{flat_multimap}%
@@ -21916,7 +21915,7 @@
2191621915
\item
2191721916
If \exposid{rank_} is greater than one,
2191821917
then the product of
21919-
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\linebreak 0))} and
21918+
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(0))} and
2192021919
all values \tcode{ext.extent($k$)}
2192121920
with $k$ in the range of \range{1}{\exposid{rank_}}
2192221921
is representable as a value of type \tcode{index_type}.
@@ -21995,7 +21994,7 @@
2199521994
\item
2199621995
If \exposid{rank_} is greater than \tcode{1} and
2199721996
\tcode{padding_value} does not equal \tcode{dynamic_extent},
21998-
then \tcode{other.\linebreak stride(1)} equals
21997+
then \tcode{other.stride(1)} equals
2199921998
\begin{codeblock}
2200021999
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2200122000
extents_type::@\exposid{index-cast}@(other.extents().extent(0)))
@@ -22062,7 +22061,7 @@
2206222061
\item
2206322062
If \exposid{rank_} is greater than 1 and
2206422063
\tcode{padding_value} does not equal \tcode{dynamic_extent},
22065-
then \tcode{other.\linebreak stride(1)} equals
22064+
then \tcode{other.stride(1)} equals
2206622065
\begin{codeblock}
2206722066
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2206822067
extents_type::@\exposid{index-cast}@(other.extent(0)))
@@ -22460,7 +22459,7 @@
2246022459
if \exposid{static-padding-stride} is not \tcode{dynamic_extent}.
2246122460
\begin{note}
2246222461
Using \tcode{extents<index_type, \exposid{static-padding-stride}>}
22463-
instead of \tcode{index_type} as the type of \exposid{stride-\linebreak rm2}
22462+
instead of \tcode{index_type} as the type of \exposid{stride-rm2}
2246422463
would achieve this.
2246522464
\end{note}
2246622465
\end{itemdescr}
@@ -22543,13 +22542,13 @@
2254322542
\item
2254422543
If \exposid{rank_} is greater than one,
2254522544
then the product of
22546-
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\exposid{\linebreak rank_} - 1))} and
22545+
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\exposid{rank_} - 1))} and
2254722546
all values \tcode{ext.extent($k$)}
2254822547
with $k$ in the range of \range{0}{\exposid{rank_} - 1}
2254922548
is representable as a value of type \tcode{index_type}.
2255022549
\item
2255122550
If \tcode{padding_value} is not equal to \tcode{dynamic_extent},
22552-
\tcode{padding_value} equals \tcode{extents_type::\linebreak \exposid{index-cast}(pad)}.
22551+
\tcode{padding_value} equals \tcode{extents_type::\exposid{index-cast}(pad)}.
2255322552
\end{itemize}
2255422553

2255522554
\pnum
@@ -22622,7 +22621,7 @@
2262222621
\item
2262322622
If \exposid{rank_} is greater than 1 and
2262422623
\tcode{padding_value} does not equal \tcode{dynamic_extent},
22625-
then \tcode{other.\linebreak stride(\exposid{rank_} - 2)} equals
22624+
then \tcode{other.stride(\exposid{rank_} - 2)} equals
2262622625
\begin{codeblock}
2262722626
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2262822627
extents_type::@\exposid{index-cast}@(other.extents().extent(@\exposid{rank_}@ - 1)))
@@ -22690,7 +22689,7 @@
2269022689
\item
2269122690
If \exposid{rank_} is greater than 1 and
2269222691
\tcode{padding_value} does not equal \tcode{dynamic_extent},
22693-
then \tcode{other.\linebreak stride(\exposid{rank_} - 2)} equals
22692+
then \tcode{other.stride(\exposid{rank_} - 2)} equals
2269422693
\begin{codeblock}
2269522694
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2269622695
extents_type::@\exposid{index-cast}@(other.extent(@\exposid{rank_}@ - 1)))
@@ -24091,7 +24090,7 @@
2409124090
\item
2409224091
\tcode{stride(k) * \exposid{de-ice}($s_k$.stride)}
2409324092
if $S_k$ is a specialization of \tcode{strided_slice} and
24094-
\tcode{$s_k$.stride < $s_k$.\linebreak extent} is \tcode{true};
24093+
\tcode{$s_k$.stride < $s_k$.extent} is \tcode{true};
2409524094
\item
2409624095
otherwise, \tcode{stride($k$)}.
2409724096
\end{itemize}
@@ -24496,11 +24495,11 @@
2449624495
\begin{itemize}
2449724496
\item
2449824497
\tcode{decltype(submdspan_mapping(src.mapping(), slices...))}
24499-
is a specialization of \tcode{submd-\linebreak{}span_mapping_result}.
24498+
is a specialization of \tcode{submdspan_mapping_result}.
2450024499

2450124500
\item
2450224501
\tcode{is_same_v<remove_cvref_t<decltype(sub_map_offset.mapping.extents())>,}
24503-
\tcode{decltype(\linebreak{}submdspan_extents(src.mapping(), slices...))>}
24502+
\tcode{decltype(submdspan_extents(src.mapping(), slices...))>}
2450424503
is \tcode{true}.
2450524504

2450624505
\item
@@ -24530,11 +24529,11 @@
2453024529
\item
2453124530
$0 \le \tcode{\exposid{first_}<index_type, $k$>(slices...)}$
2453224531
$\le \tcode{\exposid{last_}<$k$>(src.extents(), slices...)}$
24533-
$\le \tcode{\linebreak{}src.extent($k$)}$
24532+
$\le \tcode{src.extent($k$)}$
2453424533
\end{itemize}
2453524534

2453624535
\item
24537-
\tcode{sub_map_offset.mapping.extents() == submdspan_extents(src.mapping(), slices...)}\linebreak
24536+
\tcode{sub_map_offset.mapping.extents() == submdspan_extents(src.mapping(), slices...)}
2453824537
is \tcode{true}; and
2453924538

2454024539
\item

source/exec.tex

+9-9
Original file line numberDiff line numberDiff line change
@@ -2795,7 +2795,7 @@
27952795
Let \tcode{out_sndr} and \tcode{env} be subexpressions
27962796
such that \tcode{OutSndr} is \tcode{decltype((out_sndr))}.
27972797
If \tcode{\exposconcept{sender-for}<Out\-Sndr, starts_on_t>} is \tcode{false},
2798-
then the expressions \tcode{starts_on.transform_env(out_sndr, env)} and\linebreak
2798+
then the expressions \tcode{starts_on.transform_env(out_sndr, env)} and
27992799
\tcode{starts_on.transform_sender(out_sndr, env)} are ill-formed; otherwise
28002800
\begin{itemize}
28012801
\item
@@ -3148,7 +3148,7 @@
31483148
\pnum
31493149
Let \tcode{out_sndr} and \tcode{env} be subexpressions,
31503150
let \tcode{OutSndr} be \tcode{decltype((out_sndr))}, and
3151-
let \tcode{Env} be \tcode{decltype((\linebreak env))}.
3151+
let \tcode{Env} be \tcode{decltype((env))}.
31523152
If \tcode{\exposconcept{sender-for}<OutSndr, on_t>} is \tcode{false},
31533153
then the expressions \tcode{on.transform_env(out_sndr, env)} and
31543154
\tcode{on.transform_sender(out_sndr, env)} are ill-formed.
@@ -3310,7 +3310,7 @@
33103310
For subexpressions \tcode{sndr} and \tcode{f},
33113311
if \tcode{decltype((sndr))} does not satisfy \libconcept{sender}, or
33123312
\tcode{decltype((f))} does not satisfy \exposconcept{movable-value},
3313-
\tcode{\exposid{then-cpo}(\linebreak sndr, f) }is ill-formed.
3313+
\tcode{\exposid{then-cpo}(sndr, f) }is ill-formed.
33143314

33153315
\pnum
33163316
Otherwise,
@@ -3479,7 +3479,7 @@
34793479
Let \tcode{LetSigs} be a pack of those types in \tcode{Sigs}
34803480
with a return type of \tcode{\exposid{decayed-typeof}<\exposid{set-cpo}>}.
34813481
Let \exposid{as-tuple} be an alias template
3482-
such that \tcode{\exposid{as-tuple}<\linebreak Tag(Args...)>} denotes
3482+
such that \tcode{\exposid{as-tuple}<Tag(Args...)>} denotes
34833483
the type \tcode{\exposid{decayed-tuple}<Args...>}.
34843484
Then \tcode{args_variant_t} denotes
34853485
the type \tcode{variant<monostate, \exposid{as-tuple}<LetSigs>...>}
@@ -3534,7 +3534,7 @@
35343534
Let \tcode{sndr} and \tcode{env} be subexpressions, and
35353535
let \tcode{Sndr} be \tcode{decltype((sndr))}.
35363536
If
3537-
\tcode{\exposconcept{sender-for}<Sndr, \exposid{decayed-\linebreak typeof}<\exposid{let-cpo}>>}
3537+
\tcode{\exposconcept{sender-for}<Sndr, \exposid{decayed-typeof}<\exposid{let-cpo}>>}
35383538
is \tcode{false},
35393539
then the expression \tcode{\exposid{let-cpo}.transform_env(sndr, env)}
35403540
is ill-formed.
@@ -4281,7 +4281,7 @@
42814281
\end{codeblock}
42824282
if the expression \tcode{\exposid{decayed-tuple}<decltype(as)...>\{as...\}}
42834283
is potentially throwing;
4284-
otherwise, \tcode{o.emplace(\linebreak as...)}.
4284+
otherwise, \tcode{o.emplace(as...)}.
42854285

42864286
\pnum
42874287
The expression \tcode{when_all_with_variant(sndrs...)}
@@ -4594,7 +4594,7 @@
45944594

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

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

49144914
\pnum

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
@@ -13688,7 +13688,7 @@
1368813688
\mandates
1368913689
Let \tcode{a} be
1369013690
\tcode{\exposid{abs-if-needed}(declval<typename InVec::value_type>())}.
13691-
Then, \tcode{decltype(\linebreak init + a * a} is convertible to \tcode{Scalar}.
13691+
Then, \tcode{decltype(init + a * a} is convertible to \tcode{Scalar}.
1369213692

1369313693
\pnum
1369413694
\returns
@@ -13894,7 +13894,7 @@
1389413894
\mandates
1389513895
Let \tcode{a} be
1389613896
\tcode{\exposid{abs-if-needed}(declval<typename InMat::value_type>())}.
13897-
Then, \tcode{decltype(\linebreak init + a * a)}
13897+
Then, \tcode{decltype(init + a * a)}
1389813898
is convertible to \tcode{Scalar}.
1389913899

1390013900
\pnum

0 commit comments

Comments
 (0)