Skip to content

Commit 520df28

Browse files
committed
Remove more inappropriate paragraph breaks.
1 parent a5d5951 commit 520df28

27 files changed

+0
-289
lines changed

source/algorithms.tex

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6594,7 +6594,6 @@
65946594
If we define \tcode{equiv(a, b)} as \tcode{!comp(a, b) \&\& !comp(b, a)},
65956595
then the requirements are that \tcode{comp} and \tcode{equiv}
65966596
both be transitive relations:
6597-
65986597
\begin{itemize}
65996598
\item \tcode{comp(a, b) \&\& comp(b, c)} implies \tcode{comp(a, c)}
66006599
\item \tcode{equiv(a, b) \&\& equiv(b, c)} implies \tcode{equiv(a, c)}
@@ -7505,7 +7504,6 @@
75057504
For the overload with an \tcode{ExecutionPolicy},
75067505
\bigoh{N \log N} swaps and \bigoh{N} applications of the predicate.
75077506
\end{itemize}
7508-
75097507
\end{itemdescr}
75107508

75117509
\indexlibraryglobal{stable_partition}%
@@ -8346,7 +8344,6 @@
83468344
{heap with respect to comp and proj@heap with respect to \tcode{comp} and \tcode{proj}}
83478345
for a comparator and projection \tcode{comp} and \tcode{proj}
83488346
if its elements are organized such that:
8349-
83508347
\begin{itemize}
83518348
\item
83528349
With \tcode{$N$ = b - a}, for all $i$, $0 < i < N$,
@@ -10786,7 +10783,6 @@
1078610783
\pnum
1078710784
Some algorithms in this subclause are constrained with the following
1078810785
exposition-only concepts:
10789-
1079010786
\begin{itemdecl}
1079110787
template<class I>
1079210788
concept @\defexposconcept{nothrow-input-iterator}@ = // \expos

source/basic.tex

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,6 @@
253253
namespace N { int d; } // defines \tcode{N} and \tcode{N::d}
254254
namespace N1 = N; // defines \tcode{N1}
255255
X anX; // defines \tcode{anX}
256-
257256
\end{codeblock}
258257
whereas these are just declarations:
259258
\begin{codeblock}
@@ -4150,7 +4149,6 @@
41504149

41514150
\pnum
41524151
Comparing alignments is meaningful and provides the obvious results:
4153-
41544152
\begin{itemize}
41554153
\item Two alignments are equal when their numeric values are equal.
41564154
\item Two alignments are different when their numeric values are not equal.
@@ -5473,7 +5471,6 @@
54735471

54745472
\pnum
54755473
Every integer type has an \term{integer conversion rank} defined as follows:
5476-
54775474
\begin{itemize}
54785475
\item No two signed integer types other than \keyword{char} and \tcode{\keyword{signed}
54795476
\keyword{char}} (if \keyword{char} is signed) have the same rank, even if they have
@@ -6035,7 +6032,6 @@
60356032
\item
60366033
for some evaluation $X$, $A$ is dependency-ordered before $X$ and
60376034
$X$ carries a dependency to $B$.
6038-
60396035
\end{itemize}
60406036
\begin{note}
60416037
The relation ``is dependency-ordered before'' is analogous to

source/classes.tex

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1587,7 +1587,6 @@
15871587
that is of class type (or array thereof),
15881588
the constructor selected to copy/move that member is trivial;
15891589
\end{itemize}
1590-
15911590
\indextext{constructor!move!non-trivial}%
15921591
otherwise the copy/move constructor is
15931592
\defnx{non-trivial}{constructor!copy!nontrivial}.
@@ -3221,7 +3220,6 @@
32213220
destructor and \tcode{N} has a non-trivial constructor (for instance, if they declare or inherit
32223221
virtual functions), the active member of \tcode{u} can be safely switched from \tcode{m} to
32233222
\tcode{n} using the destructor and placement \grammarterm{new-expression} as follows:
3224-
32253223
\begin{codeblock}
32263224
u.m.~M();
32273225
new (&u.n) N;
@@ -3398,7 +3396,6 @@
33983396
\indextext{multiple inheritance}%
33993397
A list of base classes can be specified in a class definition using
34003398
the notation:
3401-
34023399
\begin{bnf}
34033400
\nontermdef{base-clause}\br
34043401
\terminal{:} base-specifier-list
@@ -4842,7 +4839,6 @@
48424839
\pnum
48434840
A friend declaration that does not declare a function
48444841
shall have one of the following forms:
4845-
48464842
\begin{ncsimplebnf}
48474843
\keyword{friend} elaborated-type-specifier \terminal{;}\br
48484844
\keyword{friend} simple-type-specifier \terminal{;}\br
@@ -5347,7 +5343,6 @@
53475343
non-static data members can be specified by a
53485344
\grammarterm{ctor-initializer},
53495345
which has the form
5350-
53515346
\begin{bnf}
53525347
\nontermdef{ctor-initializer}\br
53535348
\terminal{:} mem-initializer-list
@@ -5809,7 +5804,6 @@
58095804
X(const Mixins&... mixins) : Mixins(mixins)... { }
58105805
};
58115806
\end{codeblock}
5812-
58135807
\end{example}
58145808

58155809
\rSec2[class.inhctor.init]{Initialization by inherited constructor}%
@@ -6417,7 +6411,6 @@
64176411
A binary operator expression \tcode{a @ b} is
64186412
\defnx{usable}{usable!binary operator expression}
64196413
if either
6420-
64216414
\begin{itemize}
64226415
\item
64236416
\tcode{a} or \tcode{b} is of class or enumeration type and
@@ -6538,7 +6531,6 @@
65386531
of type \tcode{R}\iref{cmp.categories}
65396532
of glvalues \tcode{a} and \tcode{b} of the same type
65406533
is defined as follows:
6541-
65426534
\begin{itemize}
65436535
\item
65446536
If \tcode{a <=> b} is usable\iref{class.compare.default},
@@ -6636,7 +6628,6 @@
66366628
of a possibly-empty list of $n$ comparison category types
66376629
$\tcode{T}_0$, $\tcode{T}_1$, $\dotsc$, $\tcode{T}_{n-1}$
66386630
is defined as follows:
6639-
66406631
\begin{itemize}
66416632
\item
66426633
If at least one $\tcode{T}_i$ is \tcode{std::partial_ordering},

source/compatibility.tex

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1961,7 +1961,6 @@
19611961
\effect
19621962
The signatures of the following member functions changed from taking an
19631963
\tcode{iterator} to taking a \tcode{const_iterator}:
1964-
19651964
\begin{itemize}
19661965
\item \tcode{insert(iter, val)} for \tcode{vector}, \tcode{deque}, \tcode{list},
19671966
\tcode{set}, \tcode{multiset}, \tcode{map}, \tcode{multimap}
@@ -2033,7 +2032,6 @@
20332032
Valid \CppIII{} code that relies on implicit boolean conversions will fail to
20342033
compile with this revision of \Cpp{}. Such conversions occur in the
20352034
following conditions:
2036-
20372035
\begin{itemize}
20382036
\item passing a value to a function that takes an argument of type \tcode{bool};
20392037
\item using \tcode{operator==} to compare to \tcode{false} or \tcode{true};
@@ -3054,7 +3052,6 @@
30543052
\pnum
30553053
Header \libheaderref{cstring}:
30563054
The following functions have different declarations:
3057-
30583055
\begin{itemize}
30593056
\item \tcode{strchr}
30603057
\item \tcode{strpbrk}
@@ -3068,7 +3065,6 @@
30683065
\pnum
30693066
Header \libheaderref{cwchar}:
30703067
The following functions have different declarations:
3071-
30723068
\begin{itemize}
30733069
\item \tcode{wcschr}
30743070
\item \tcode{wcspbrk}
@@ -3093,7 +3089,6 @@
30933089
\pnum
30943090
Header \libheaderref{cstdlib}:
30953091
The following functions have different behavior:
3096-
30973092
\begin{itemize}
30983093
\item \tcode{atexit}
30993094
\item \tcode{exit}

source/concepts.tex

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,6 @@
150150
The following type \tcode{T} meets the explicitly stated syntactic requirements
151151
of concept \tcode{C} above but does not meet the additional implicit
152152
requirements:
153-
154153
\begin{codeblock}
155154
struct T {
156155
bool operator==(const T&) const { return true; }
@@ -365,15 +364,13 @@
365364
such that \tcode{f()} is equality-preserving.
366365
Types \tcode{From} and \tcode{To} model \tcode{\libconcept{convertible_to}<From, To>}
367366
only if:
368-
369367
\begin{itemize}
370368
\item
371369
\tcode{To} is not an object or reference-to-object type, or
372370
\tcode{static_cast<To>(f())} is equal to \tcode{test(f)}.
373371

374372
\item
375373
\tcode{FromR} is not a reference-to-object type, or
376-
377374
\begin{itemize}
378375
\item
379376
If \tcode{FromR} is an rvalue reference to a non const-qualified type, the
@@ -486,7 +483,6 @@
486483
Users can customize the behavior of \libconcept{common_with} by specializing the
487484
\tcode{common_type} class template\iref{meta.trans.other}.
488485
\end{note}
489-
490486
\end{itemdescr}
491487

492488
\rSec2[concepts.arithmetic]{Arithmetic concepts}
@@ -540,12 +536,10 @@
540536
\end{itemize}
541537
\tcode{LHS} and \tcode{RHS} model
542538
\tcode{\libconcept{assignable_from}<LHS, RHS>} only if
543-
544539
\begin{itemize}
545540
\item \tcode{addressof(lhs = rhs) == addressof(lcopy)}.
546541

547542
\item After evaluating \tcode{lhs = rhs}:
548-
549543
\begin{itemize}
550544
\item \tcode{lhs} is equal to \tcode{rcopy}, unless \tcode{rhs} is a non-const
551545
xvalue that refers to \tcode{lcopy}.
@@ -600,7 +594,6 @@
600594
\tcode{ranges::swap(E1, E2)} for subexpressions \tcode{E1}
601595
and \tcode{E2} is expression-equivalent to an expression
602596
\tcode{S} determined as follows:
603-
604597
\begin{itemize}
605598
\item
606599
\tcode{S} is \tcode{(void)swap(E1, E2)}
@@ -808,7 +801,6 @@
808801
If \tcode{T} is an object type, then let \tcode{rv} be an rvalue of type
809802
\tcode{T} and \tcode{u2} a distinct object of type \tcode{T} equal to
810803
\tcode{rv}. \tcode{T} models \libconcept{move_constructible} only if
811-
812804
\begin{itemize}
813805
\item After the definition \tcode{T u = rv;}, \tcode{u} is equal to \tcode{u2}.
814806

@@ -835,15 +827,13 @@
835827
If \tcode{T} is an object type, then let \tcode{v} be an lvalue of type
836828
\tcode{T} or \tcode{\keyword{const} T} or an rvalue of type \tcode{\keyword{const} T}.
837829
\tcode{T} models \libconcept{copy_constructible} only if
838-
839830
\begin{itemize}
840831
\item After the definition \tcode{T u = v;},
841832
\tcode{u} is equal to \tcode{v}\iref{concepts.equality} and
842833
\tcode{v} is not modified.
843834

844835
\item \tcode{T(v)} is equal to \tcode{v} and does not modify \tcode{v}.
845836
\end{itemize}
846-
847837
\end{itemdescr}
848838

849839
\rSec1[concepts.compare]{Comparison concepts}
@@ -882,7 +872,6 @@
882872
Let \tcode{e} be an expression such that
883873
\tcode{decltype((e))} is \tcode{T}.
884874
\tcode{T} models \exposconcept{boolean-testable-impl} only if:
885-
886875
\begin{itemize}
887876
\item
888877
either \tcode{remove_cvref_t<T>} is not a class type, or
@@ -900,7 +889,6 @@
900889
\pnum
901890
A \defnadj{disqualifying}{parameter}
902891
is a function parameter whose declared type \tcode{P}
903-
904892
\begin{itemize}
905893
\item
906894
is not dependent on a template parameter, and
@@ -948,7 +936,6 @@
948936

949937
\pnum
950938
A \defnadj{disqualifying}{declaration} is
951-
952939
\begin{itemize}
953940
\item
954941
a (non-template) function declaration that
@@ -1131,7 +1118,6 @@
11311118
Given a type \tcode{T}, let \tcode{a}, \tcode{b}, and \tcode{c} be
11321119
lvalues of type \tcode{const remove_reference_t<T>}.
11331120
\tcode{T} models \libconcept{totally_ordered} only if
1134-
11351121
\begin{itemize}
11361122
\item Exactly one of \tcode{bool(a < b)}, \tcode{bool(a > b)}, or
11371123
\tcode{bool(a == b)} is \tcode{true}.
@@ -1140,7 +1126,6 @@
11401126
\item \tcode{bool(a <= b) == !bool(b < a)}.
11411127
\item \tcode{bool(a >= b) == !bool(a < b)}.
11421128
\end{itemize}
1143-
11441129
\end{itemdescr}
11451130

11461131
\begin{itemdecl}
@@ -1339,7 +1324,6 @@
13391324
and
13401325
\tcode{equiv}
13411326
both be transitive relations:
1342-
13431327
\begin{itemize}
13441328
\item
13451329
\tcode{comp(a, b) \&\& comp(b, c)}

source/containers.tex

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -763,7 +763,6 @@
763763
\ref{vector.modifiers})
764764
all container types defined in this Clause meet
765765
the following additional requirements:
766-
767766
\begin{itemize}
768767
\item
769768
If an exception is thrown by an
@@ -878,7 +877,6 @@
878877
the terms below are defined as if \tcode{A} were
879878
\tcode{allocator<T>} --- no allocator object needs to be created
880879
and user specializations of \tcode{allocator<T>} are not instantiated:
881-
882880
\begin{itemize}
883881
\item
884882
\tcode{T} is \defnx{\oldconcept{DefaultInsertable} into \tcode{X}}
@@ -1201,7 +1199,6 @@
12011199
Likewise, the extent to which an implementation determines that a type cannot be
12021200
an allocator is unspecified, except that as a minimum a type \tcode{A} shall not qualify
12031201
as an allocator unless it meets both of the following conditions:
1204-
12051202
\begin{itemize}
12061203
\item The \grammarterm{qualified-id} \tcode{A::value_type}
12071204
is valid and denotes a type\iref{temp.deduct}.
@@ -3925,14 +3922,12 @@
39253922
to
39263923
\tcode{j}
39273924
is positive, the following condition holds:
3928-
39293925
\begin{codeblock}
39303926
value_comp(*j, *i) == false
39313927
\end{codeblock}
39323928

39333929
\pnum
39343930
For associative containers with unique keys the stronger condition holds:
3935-
39363931
\begin{codeblock}
39373932
value_comp(*i, *j) != false
39383933
\end{codeblock}
@@ -5919,7 +5914,6 @@
59195914

59205915
\pnum
59215916
The following exposition-only alias template may appear in deduction guides for sequence containers:
5922-
59235917
\begin{codeblock}
59245918
template<class InputIterator>
59255919
using @\placeholdernc{iter-value-type}@ = typename iterator_traits<InputIterator>::value_type; // \expos
@@ -8111,7 +8105,6 @@
81118105
appends \tcode{sz - size()} default-inserted elements to the
81128106
sequence.
81138107
If \tcode{sz <= size()}, equivalent to:
8114-
81158108
\begin{codeblock}
81168109
list<T>::iterator it = begin();
81178110
advance(it, sz);
@@ -9325,13 +9318,11 @@
93259318
\pnum
93269319
\effects
93279320
Exchanges the contents of \tcode{x} and \tcode{y} as if by:
9328-
93299321
\begin{codeblock}
93309322
bool b = x;
93319323
x = y;
93329324
y = b;
93339325
\end{codeblock}
9334-
93359326
\end{itemdescr}
93369327

93379328
\begin{itemdecl}

0 commit comments

Comments
 (0)