Skip to content

Commit a6221ef

Browse files
committed
Remove awkward \linebreaks.
1 parent 030ef2d commit a6221ef

File tree

9 files changed

+62
-62
lines changed

9 files changed

+62
-62
lines changed

source/algorithms.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7080,7 +7080,7 @@
70807080
\tcode{invoke(op, invoke(proj, *(first1 + (i - result))))}
70817081
for unary transforms defined in namespace \tcode{ranges};
70827082
\item
7083-
\tcode{invoke(binary_op, invoke(proj1, *(first1 + (i - result))), invoke(proj2,\linebreak *(first2 + (i - result))))}
7083+
\tcode{invoke(binary_op, invoke(proj1, *(first1 + (i - result))), invoke(proj2, *(first2 + (i - result))))}
70847084
for binary transforms defined in namespace \tcode{ranges}.
70857085
\end{itemize}
70867086
\end{itemize}
@@ -14217,7 +14217,7 @@
1421714217
\pnum
1421814218
\constraints
1421914219
\tcode{is_unbounded_array_v<T>} is \tcode{false}.
14220-
The expression \tcode{::new (declval<void*>()) T(\linebreak{}declval<Args>()...)}
14220+
The expression \tcode{::new (declval<void*>()) T(declval<Args>()...)}
1422114221
is well-formed when treated as an unevaluated operand\iref{term.unevaluated.operand}.
1422214222

1422314223
\pnum

source/containers.tex

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1461,7 +1461,7 @@
14611461
\pnum
14621462
\recommended
14631463
If \tcode{R} models \tcode{ranges::\libconcept{approximately_sized_range}} and
1464-
\tcode{ranges::distance(\linebreak{}rg) <= ranges::reserve_hint(rg)} is \tcode{true},
1464+
\tcode{ranges::distance(rg) <= ranges::reserve_hint(rg)} is \tcode{true},
14651465
an implementation should not perform more than a single reallocation.
14661466

14671467
\pnum
@@ -1836,7 +1836,7 @@
18361836
\pnum
18371837
\recommended
18381838
If \tcode{R} models \tcode{ranges::\libconcept{approximately_sized_range}} and
1839-
\tcode{ranges::distance(\linebreak{}rg) <= ranges::reserve_hint(rg)} is \tcode{true},
1839+
\tcode{ranges::distance(rg) <= ranges::reserve_hint(rg)} is \tcode{true},
18401840
an implementation should not perform any reallocation.
18411841
\end{itemdescr}
18421842

@@ -2453,7 +2453,7 @@
24532453
\item
24542454
If \tcode{!\exposid{alloc_}} is \tcode{true} or
24552455
\tcode{\exposid{ator-traits}::propagate_on_container_move_assignment::value}
2456-
is \tcode{true}, \linebreak
2456+
is \tcode{true},
24572457
move assigns \tcode{nh.\exposid{alloc_}} to \exposid{alloc_}.
24582458
\item
24592459
Assigns
@@ -7473,14 +7473,14 @@
74737473
\pnum
74747474
\expects
74757475
\tcode{T} is \oldconcept{EmplaceConstructible} into \tcode{forward_list}
7476-
from \tcode{std::forward<Args>(\linebreak args)...}.
7476+
from \tcode{std::forward<Args>(args)...}.
74777477
\tcode{position} is \tcode{before_begin()} or is a dereferenceable
74787478
iterator in the range \range{begin()}{end()}.
74797479

74807480
\pnum
74817481
\effects
74827482
Inserts an object of type \tcode{value_type} direct-non-list-initialized with
7483-
\tcode{std::forward<Args>(\linebreak args)...} after \tcode{position}.
7483+
\tcode{std::forward<Args>(args)...} after \tcode{position}.
74847484

74857485
\pnum
74867486
\returns
@@ -10706,7 +10706,7 @@
1070610706
\pnum
1070710707
The expression
1070810708
\tcode{\exposid{is-vector-bool-reference}<T>} is \tcode{true}
10709-
if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::\linebreak{}reference}
10709+
if \tcode{T} denotes the type \tcode{vector<bool, Alloc>::reference}
1071010710
for some type \tcode{Alloc} and
1071110711
\tcode{vector<bool, Alloc>} is not a program-defined specialization.
1071210712
\end{itemdescr}
@@ -12103,7 +12103,7 @@
1210312103
Otherwise, let \tcode{r} be \tcode{equal_range(k)}.
1210412104
Constructs an object \tcode{u} of type \tcode{value_type} with
1210512105
\tcode{piecewise_construct, forward_as_tuple(std::forward<K>(k)),
12106-
forward_as_tuple(std::forward<Args>(args)...)}.\linebreak
12106+
forward_as_tuple(std::forward<Args>(args)...)}.
1210712107
If \tcode{equal_range(u.first) == r} is \tcode{false},
1210812108
the behavior is undefined.
1210912109
Inserts \tcode{u} into \tcode{*this}.
@@ -17612,7 +17612,7 @@
1761217612
\pnum
1761317613
\effects
1761417614
Equivalent to \tcode{flat_map(sorted_unique, key_cont, mapped_cont)} and
17615-
\tcode{flat_map(sorted_unique, key_cont, \linebreak{}mapped_cont, comp)}, respectively,
17615+
\tcode{flat_map(sorted_unique, key_cont, mapped_cont, comp)}, respectively,
1761617616
except that \tcode{\exposid{c}.keys} and \tcode{\exposid{c}.values} are constructed
1761717617
with uses-allocator construction\iref{allocator.uses.construction}.
1761817618

@@ -17796,7 +17796,7 @@
1779617796
\pnum
1779717797
\effects
1779817798
Initializes an object \tcode{t} of type \tcode{pair<key_type, mapped_type>}
17799-
with \tcode{std::forward<Args>(\linebreak args)...};
17799+
with \tcode{std::forward<Args>(args)...};
1780017800
if the map already contains an element
1780117801
whose key is equivalent to \tcode{t.first},
1780217802
\tcode{*this} is unchanged.
@@ -18068,7 +18068,7 @@
1806818068
\effects
1806918069
If the map already contains an element \tcode{e}
1807018070
whose key is equivalent to \tcode{k},
18071-
assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}.
18071+
assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}.
1807218072
Otherwise, equivalent to
1807318073
\begin{codeblock}
1807418074
try_emplace(std::forward<decltype(k)>(k), std::forward<M>(obj))
@@ -18123,7 +18123,7 @@
1812318123
\effects
1812418124
If the map already contains an element \tcode{e}
1812518125
whose key is equivalent to \tcode{k},
18126-
assigns \tcode{std::forward<\linebreak M>(obj)} to \tcode{e.second}.
18126+
assigns \tcode{std::forward<M>(obj)} to \tcode{e.second}.
1812718127
Otherwise, equivalent to
1812818128
\begin{codeblock}
1812918129
try_emplace(std::forward<K>(k), std::forward<M>(obj))
@@ -18753,14 +18753,14 @@
1875318753
\pnum
1875418754
\effects
1875518755
Equivalent to \tcode{flat_multimap(key_cont, mapped_cont)} and
18756-
\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively,
18756+
\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively,
1875718757
except that \tcode{\exposid{c}.keys} and \tcode{\exposid{c}.values} are constructed
1875818758
with uses-allocator construction\iref{allocator.uses.construction}.
1875918759

1876018760
\pnum
1876118761
\complexity
1876218762
Same as \tcode{flat_multimap(key_cont, mapped_cont)} and
18763-
\tcode{flat_multimap(key_cont, \linebreak{}mapped_cont, comp)}, respectively.
18763+
\tcode{flat_multimap(key_cont, mapped_cont, comp)}, respectively.
1876418764
\end{itemdescr}
1876518765

1876618766
\indexlibraryctor{flat_multimap}%
@@ -23454,7 +23454,7 @@
2345423454
\item
2345523455
If \exposid{rank_} is greater than one,
2345623456
then the product of
23457-
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\linebreak 0))} and
23457+
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(0))} and
2345823458
all values \tcode{ext.extent($k$)}
2345923459
with $k$ in the range of \range{1}{\exposid{rank_}}
2346023460
is representable as a value of type \tcode{index_type}.
@@ -23533,7 +23533,7 @@
2353323533
\item
2353423534
If \exposid{rank_} is greater than \tcode{1} and
2353523535
\tcode{padding_value} does not equal \tcode{dynamic_extent},
23536-
then \tcode{other.\linebreak stride(1)} equals
23536+
then \tcode{other.stride(1)} equals
2353723537
\begin{codeblock}
2353823538
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2353923539
extents_type::@\exposid{index-cast}@(other.extents().extent(0)))
@@ -23608,7 +23608,7 @@
2360823608
\item
2360923609
If \exposid{rank_} is greater than 1 and
2361023610
\tcode{padding_value} does not equal \tcode{dynamic_extent},
23611-
then \tcode{other.\linebreak stride(1)} equals
23611+
then \tcode{other.stride(1)} equals
2361223612
\begin{codeblock}
2361323613
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2361423614
extents_type::@\exposid{index-cast}@(other.extent(0)))
@@ -24008,7 +24008,7 @@
2400824008
if \exposid{static-padding-stride} is not \tcode{dynamic_extent}.
2400924009
\begin{note}
2401024010
Using \tcode{extents<index_type, \exposid{static-padding-stride}>}
24011-
instead of \tcode{index_type} as the type of \exposid{stride-\linebreak rm2}
24011+
instead of \tcode{index_type} as the type of \exposid{stride-rm2}
2401224012
would achieve this.
2401324013
\end{note}
2401424014
\end{itemdescr}
@@ -24091,13 +24091,13 @@
2409124091
\item
2409224092
If \exposid{rank_} is greater than one,
2409324093
then the product of
24094-
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\exposid{\linebreak rank_} - 1))} and
24094+
\tcode{\exposid{LEAST-MULTIPLE-AT-LEAST}(pad, ext.extent(\exposid{rank_} - 1))} and
2409524095
all values \tcode{ext.extent($k$)}
2409624096
with $k$ in the range of \range{0}{\exposid{rank_} - 1}
2409724097
is representable as a value of type \tcode{index_type}.
2409824098
\item
2409924099
If \tcode{padding_value} is not equal to \tcode{dynamic_extent},
24100-
\tcode{padding_value} equals \tcode{extents_type::\linebreak \exposid{index-cast}(pad)}.
24100+
\tcode{padding_value} equals \tcode{extents_type::\exposid{index-cast}(pad)}.
2410124101
\end{itemize}
2410224102

2410324103
\pnum
@@ -24170,7 +24170,7 @@
2417024170
\item
2417124171
If \exposid{rank_} is greater than 1 and
2417224172
\tcode{padding_value} does not equal \tcode{dynamic_extent},
24173-
then \tcode{other.\linebreak stride(\exposid{rank_} - 2)} equals
24173+
then \tcode{other.stride(\exposid{rank_} - 2)} equals
2417424174
\begin{codeblock}
2417524175
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2417624176
extents_type::@\exposid{index-cast}@(other.extents().extent(@\exposid{rank_}@ - 1)))
@@ -24245,7 +24245,7 @@
2424524245
\item
2424624246
If \exposid{rank_} is greater than 1 and
2424724247
\tcode{padding_value} does not equal \tcode{dynamic_extent},
24248-
then \tcode{other.\linebreak stride(\exposid{rank_} - 2)} equals
24248+
then \tcode{other.stride(\exposid{rank_} - 2)} equals
2424924249
\begin{codeblock}
2425024250
@\exposid{LEAST-MULTIPLE-AT-LEAST}@(padding_value,
2425124251
extents_type::@\exposid{index-cast}@(other.extent(@\exposid{rank_}@ - 1)))

source/exec.tex

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3267,7 +3267,7 @@
32673267
Let \tcode{out_sndr} and \tcode{env} be subexpressions
32683268
such that \tcode{OutSndr} is \tcode{decltype((out_sndr))}.
32693269
If \tcode{\exposconcept{sender-for}<Out\-Sndr, starts_on_t>} is \tcode{false},
3270-
then the expressions \tcode{starts_on.transform_env(out_sndr, env)} and\linebreak
3270+
then the expressions \tcode{starts_on.transform_env(out_sndr, env)} and
32713271
\tcode{starts_on.transform_sender(out_sndr, env)} are ill-formed; otherwise
32723272
\begin{itemize}
32733273
\item
@@ -3647,7 +3647,7 @@
36473647
\pnum
36483648
Let \tcode{out_sndr} and \tcode{env} be subexpressions,
36493649
let \tcode{OutSndr} be \tcode{decltype((out_sndr))}, and
3650-
let \tcode{Env} be \tcode{decltype((\linebreak env))}.
3650+
let \tcode{Env} be \tcode{decltype((env))}.
36513651
If \tcode{\exposconcept{sender-for}<OutSndr, on_t>} is \tcode{false},
36523652
then the expressions \tcode{on.transform_env(out_sndr, env)} and
36533653
\tcode{on.transform_sender(out_sndr, env)} are ill-formed.
@@ -3789,7 +3789,7 @@
37893789
For subexpressions \tcode{sndr} and \tcode{f},
37903790
if \tcode{decltype((sndr))} does not satisfy \libconcept{sender}, or
37913791
\tcode{decltype((f))} does not satisfy \exposconcept{movable-value},
3792-
\tcode{\exposid{then-cpo}(\linebreak sndr, f) }is ill-formed.
3792+
\tcode{\exposid{then-cpo}(sndr, f) }is ill-formed.
37933793

37943794
\pnum
37953795
Otherwise,
@@ -4090,7 +4090,7 @@
40904090
Let \tcode{sndr} and \tcode{env} be subexpressions, and
40914091
let \tcode{Sndr} be \tcode{decltype((sndr))}.
40924092
If
4093-
\tcode{\exposconcept{sender-for}<Sndr, \exposid{decayed-\linebreak typeof}<\exposid{let-cpo}>>}
4093+
\tcode{\exposconcept{sender-for}<Sndr, \exposid{decayed-typeof}<\exposid{let-cpo}>>}
40944094
is \tcode{false},
40954095
then the expression \tcode{\exposid{let-cpo}.transform_env(sndr, env)}
40964096
is ill-formed.
@@ -4731,7 +4731,7 @@
47314731
\end{codeblock}
47324732
if the expression \tcode{\exposid{decayed-tuple}<decltype(as)...>\{as...\}}
47334733
is potentially throwing;
4734-
otherwise, \tcode{o.emplace(\linebreak as...)}.
4734+
otherwise, \tcode{o.emplace(as...)}.
47354735

47364736
\pnum
47374737
The expression \tcode{when_all_with_variant(sndrs...)}
@@ -5762,7 +5762,7 @@
57625762

57635763
\pnum
57645764
For a subexpression \tcode{sndr}, let \tcode{Sndr} be \tcode{decltype((sndr))}.
5765-
If \tcode{\libconcept{sender_to}<Sndr, \exposid{sync-wait-receiver}<\linebreak Sndr>>}
5765+
If \tcode{\libconcept{sender_to}<Sndr, \exposid{sync-wait-receiver}<Sndr>>}
57665766
is \tcode{false},
57675767
the expression \tcode{sync_wait.apply_sender(sndr)} is ill-formed;
57685768
otherwise, it is equivalent to:

source/memory.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1245,7 +1245,7 @@
12451245
\begin{itemize}
12461246
\item
12471247
If \tcode{uses_allocator_v<remove_cv_t<T>, Alloc>} is \tcode{false} and
1248-
\tcode{is_constructible_v<T,\linebreak Args...>} is \tcode{true},
1248+
\tcode{is_constructible_v<T, Args...>} is \tcode{true},
12491249
return \tcode{forward_as_tuple(std::forward<Args>(args)...)}.
12501250
\item
12511251
Otherwise, if \tcode{uses_allocator_v<remove_cv_t<T>, Alloc>} is \tcode{true} and
@@ -4206,7 +4206,7 @@
42064206
the allocator \tcode{a} passed to \tcode{allocate_shared}.
42074207
\item
42084208
When a (sub)object of non-array type \tcode{U} is initialized by
4209-
\tcode{make_shared_for_overwrite} or\linebreak % avoid Overfull
4209+
\tcode{make_shared_for_overwrite} or
42104210
\tcode{allocate_shared_for_overwrite},
42114211
it is initialized via the expression \tcode{::new(pv) U},
42124212
where \tcode{pv} has type \tcode{void*} and
@@ -5441,7 +5441,7 @@
54415441
\end{codeblock}
54425442
if the expression
54435443
\tcode{s.reset(static_cast<SP>(p), std::forward<Args>(args)...)}
5444-
is well-\linebreak formed;
5444+
is well-formed;
54455445
\item
54465446
otherwise,
54475447
\begin{codeblock}

source/meta.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2526,7 +2526,7 @@
25262526
\item Let \tcode{R} be \tcode{\placeholdernc{COMMON-REF}(T1, T2)}.
25272527
If \tcode{T1} and \tcode{T2} are reference types,
25282528
\tcode{R} is well-formed, and
2529-
\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},
2529+
\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},
25302530
then the member typedef \tcode{type} denotes \tcode{R}.
25312531

25322532
\item Otherwise, if

source/numerics.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13822,7 +13822,7 @@
1382213822
a specialization of \tcode{complex}.
1382313823
Let \tcode{a} be
1382413824
\tcode{\exposid{abs-if-needed}(declval<typename InVec::value_type>())}.
13825-
Then, \tcode{decltype(\linebreak init + a * a} is convertible to \tcode{Scalar}.
13825+
Then, \tcode{decltype(init + a * a} is convertible to \tcode{Scalar}.
1382613826

1382713827
\pnum
1382813828
\returns
@@ -14023,7 +14023,7 @@
1402314023
a specialization of \tcode{complex}.
1402414024
Let \tcode{a} be
1402514025
\tcode{\exposid{abs-if-needed}(declval<typename InMat::value_type>())}.
14026-
Then, \tcode{decltype(\linebreak init + a * a)}
14026+
Then, \tcode{decltype(init + a * a)}
1402714027
is convertible to \tcode{Scalar}.
1402814028

1402914029
\pnum

0 commit comments

Comments
 (0)