Skip to content

Commit e6b0ba6

Browse files
committed
Remove awkward \linebreaks.
1 parent 79bcee0 commit e6b0ba6

9 files changed

+66
-67
lines changed

Diff for: 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}

Diff for: 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
@@ -7499,14 +7498,14 @@
74997498
\pnum
75007499
\expects
75017500
\tcode{T} is \oldconcept{EmplaceConstructible} into \tcode{forward_list}
7502-
from \tcode{std::forward<Args>(\linebreak args)...}.
7501+
from \tcode{std::forward<Args>(args)...}.
75037502
\tcode{position} is \tcode{before_begin()} or is a dereferenceable
75047503
iterator in the range \range{begin()}{end()}.
75057504

75067505
\pnum
75077506
\effects
75087507
Inserts an object of type \tcode{value_type} direct-non-list-initialized with
7509-
\tcode{std::forward<Args>(\linebreak args)...} after \tcode{position}.
7508+
\tcode{std::forward<Args>(args)...} after \tcode{position}.
75107509

75117510
\pnum
75127511
\returns
@@ -9440,7 +9439,7 @@
94409439
\pnum
94419440
The expression
94429441
\tcode{\exposid{is-vector-bool-reference}<T>} is \tcode{true}
9443-
if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::\linebreak{}reference}
9442+
if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::reference}
94449443
for some type \tcode{Alloc} and
94459444
\tcode{vector<bool, Alloc>} is not a program-defined specialization.
94469445
\end{itemdescr}
@@ -10869,7 +10868,7 @@
1086910868
Otherwise, let \tcode{r} be \tcode{equal_range(k)}.
1087010869
Constructs an object \tcode{u} of type \tcode{value_type} with
1087110870
\tcode{piecewise_construct, forward_as_tuple(std::forward<K>(k)),
10872-
forward_as_tuple(std::forward<Args>(args)...)}.\linebreak
10871+
forward_as_tuple(std::forward<Args>(args)...)}.
1087310872
If \tcode{equal_range(u.first) == r} is \tcode{false},
1087410873
the behavior is undefined.
1087510874
Inserts \tcode{u} into \tcode{*this}.
@@ -16306,7 +16305,7 @@
1630616305
\pnum
1630716306
\effects
1630816307
Equivalent to \tcode{flat_map(s, key_cont, mapped_cont)} and
16309-
\tcode{flat_map(s, key_cont, \linebreak{}mapped_cont, comp)}, respectively,
16308+
\tcode{flat_map(s, key_cont, mapped_cont, comp)}, respectively,
1631016309
except that \tcode{c.keys} and \tcode{c.values} are constructed
1631116310
with uses-allocator construction\iref{allocator.uses.construction}.
1631216311

@@ -16489,7 +16488,7 @@
1648916488
\pnum
1649016489
\effects
1649116490
Initializes an object \tcode{t} of type \tcode{pair<key_type, mapped_type>}
16492-
with \tcode{std::forward<Args>(\linebreak args)...};
16491+
with \tcode{std::forward<Args>(args)...};
1649316492
if the map already contains an element
1649416493
whose key is equivalent to \tcode{t.first},
1649516494
\tcode{*this} is unchanged.
@@ -16766,7 +16765,7 @@
1676616765
\effects
1676716766
If the map already contains an element \tcode{e}
1676816767
whose key is equivalent to \tcode{k},
16769-
assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}.
16768+
assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}.
1677016769
Otherwise, equivalent to
1677116770
\begin{codeblock}
1677216771
try_emplace(std::forward<decltype(k)>(k), std::forward<M>(obj))
@@ -16821,7 +16820,7 @@
1682116820
\effects
1682216821
If the map already contains an element \tcode{e}
1682316822
whose key is equivalent to \tcode{k},
16824-
assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}.
16823+
assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}.
1682516824
Otherwise, equivalent to
1682616825
\begin{codeblock}
1682716826
try_emplace(std::forward<K>(k), std::forward<M>(obj))
@@ -17426,14 +17425,14 @@
1742617425
\pnum
1742717426
\effects
1742817427
Equivalent to \tcode{flat_multimap(key_cont, mapped_cont)} and
17429-
\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively,
17428+
\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively,
1743017429
except that \tcode{c.keys} and \tcode{c.values} are constructed
1743117430
with uses-allocator construction\iref{allocator.uses.construction}.
1743217431

1743317432
\pnum
1743417433
\complexity
1743517434
Same as \tcode{flat_multimap(key_cont, mapped_cont)} and
17436-
\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively.
17435+
\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively.
1743717436
\end{itemdescr}
1743817437

1743917438
\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

Diff for: 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

Diff for: 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

Diff for: 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}

Diff for: 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

Diff for: source/numerics.tex

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

1369113691
\pnum
1369213692
\returns
@@ -13892,7 +13892,7 @@
1389213892
\mandates
1389313893
Let \tcode{a} be
1389413894
\tcode{\exposid{abs-if-needed}(declval<typename InMat::value_type>())}.
13895-
Then, \tcode{decltype(\linebreak init + a * a)}
13895+
Then, \tcode{decltype(init + a * a)}
1389613896
is convertible to \tcode{Scalar}.
1389713897

1389813898
\pnum

0 commit comments

Comments
 (0)