Skip to content

Commit 356c91f

Browse files
committed
Remove more inappropriate paragraph breaks.
1 parent cddca8d commit 356c91f

27 files changed

+0
-279
lines changed

source/algorithms.tex

-4
Original file line numberDiff line numberDiff line change
@@ -6828,7 +6828,6 @@
68286828
If we define \tcode{equiv(a, b)} as \tcode{!comp(a, b) \&\& !comp(b, a)},
68296829
then the requirements are that \tcode{comp} and \tcode{equiv}
68306830
both be transitive relations:
6831-
68326831
\begin{itemize}
68336832
\item \tcode{comp(a, b) \&\& comp(b, c)} implies \tcode{comp(a, c)}
68346833
\item \tcode{equiv(a, b) \&\& equiv(b, c)} implies \tcode{equiv(a, c)}
@@ -7751,7 +7750,6 @@
77517750
For the overload with an \tcode{ExecutionPolicy},
77527751
\bigoh{N \log N} swaps and \bigoh{N} applications of the predicate.
77537752
\end{itemize}
7754-
77557753
\end{itemdescr}
77567754

77577755
\indexlibraryglobal{stable_partition}%
@@ -8593,7 +8591,6 @@
85938591
{heap with respect to comp and proj@heap with respect to \tcode{comp} and \tcode{proj}}
85948592
for a comparator and projection \tcode{comp} and \tcode{proj}
85958593
if its elements are organized such that:
8596-
85978594
\begin{itemize}
85988595
\item
85998596
With \tcode{$N$ = b - a}, for all $i$, $0 < i < N$,
@@ -11169,7 +11166,6 @@
1116911166
\pnum
1117011167
Some algorithms in this subclause are constrained with the following
1117111168
exposition-only concepts:
11172-
1117311169
\begin{itemdecl}
1117411170
template<class I>
1117511171
concept @\defexposconcept{nothrow-input-iterator}@ = // \expos

source/basic.tex

-4
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,6 @@
254254
namespace N { int d; } // defines \tcode{N} and \tcode{N::d}
255255
namespace N1 = N; // defines \tcode{N1}
256256
X anX; // defines \tcode{anX}
257-
258257
\end{codeblock}
259258
whereas these are just declarations:
260259
\begin{codeblock}
@@ -761,7 +760,6 @@
761760

762761
\pnum
763762
For the purposes of the preceding requirements:
764-
765763
\begin{itemize}
766764
\item If \tcode{D} is a class with an implicitly-declared
767765
constructor\iref{class.default.ctor,class.copy.ctor},
@@ -5735,7 +5733,6 @@
57355733

57365734
\pnum
57375735
Every integer type has an \term{integer conversion rank} defined as follows:
5738-
57395736
\begin{itemize}
57405737
\item No two signed integer types other than \keyword{char} and \tcode{\keyword{signed}
57415738
\keyword{char}} (if \keyword{char} is signed) have the same rank, even if they have
@@ -6348,7 +6345,6 @@
63486345
\item
63496346
for some evaluation $X$, $A$ is dependency-ordered before $X$ and
63506347
$X$ carries a dependency to $B$.
6351-
63526348
\end{itemize}
63536349
\begin{note}
63546350
The relation ``is dependency-ordered before'' is analogous to

source/classes.tex

-8
Original file line numberDiff line numberDiff line change
@@ -1555,7 +1555,6 @@
15551555
that is of class type (or array thereof),
15561556
the constructor selected to copy/move that member is trivial;
15571557
\end{itemize}
1558-
15591558
\indextext{constructor!move!non-trivial}%
15601559
otherwise the copy/move constructor is
15611560
\defnx{non-trivial}{constructor!copy!nontrivial}.
@@ -3171,7 +3170,6 @@
31713170
destructor and \tcode{N} has a non-trivial constructor (for instance, if they declare or inherit
31723171
virtual functions), the active member of \tcode{u} can be safely switched from \tcode{m} to
31733172
\tcode{n} using the destructor and placement \grammarterm{new-expression} as follows:
3174-
31753173
\begin{codeblock}
31763174
u.m.~M();
31773175
new (&u.n) N;
@@ -3349,7 +3347,6 @@
33493347
\indextext{multiple inheritance}%
33503348
A list of base classes can be specified in a class definition using
33513349
the notation:
3352-
33533350
\begin{bnf}
33543351
\nontermdef{base-clause}\br
33553352
\terminal{:} base-specifier-list
@@ -5308,7 +5305,6 @@
53085305
non-static data members can be specified by a
53095306
\grammarterm{ctor-initializer},
53105307
which has the form
5311-
53125308
\begin{bnf}
53135309
\nontermdef{ctor-initializer}\br
53145310
\terminal{:} mem-initializer-list
@@ -5770,7 +5766,6 @@
57705766
X(const Mixins&... mixins) : Mixins(mixins)... { }
57715767
};
57725768
\end{codeblock}
5773-
57745769
\end{example}
57755770

57765771
\rSec2[class.inhctor.init]{Initialization by inherited constructor}%
@@ -6422,7 +6417,6 @@
64226417
A binary operator expression \tcode{a @ b} is
64236418
\defnx{usable}{usable!binary operator expression}
64246419
if either
6425-
64266420
\begin{itemize}
64276421
\item
64286422
\tcode{a} or \tcode{b} is of class or enumeration type and
@@ -6543,7 +6537,6 @@
65436537
of type \tcode{R}\iref{cmp.categories}
65446538
of glvalues \tcode{a} and \tcode{b} of the same type
65456539
is defined as follows:
6546-
65476540
\begin{itemize}
65486541
\item
65496542
If \tcode{a <=> b} is usable\iref{class.compare.default} and
@@ -6642,7 +6635,6 @@
66426635
of a possibly-empty list of $n$ comparison category types
66436636
$\tcode{T}_0$, $\tcode{T}_1$, $\dotsc$, $\tcode{T}_{n-1}$
66446637
is defined as follows:
6645-
66466638
\begin{itemize}
66476639
\item
66486640
If at least one $\tcode{T}_i$ is \tcode{std::partial_ordering},

source/compatibility.tex

-5
Original file line numberDiff line numberDiff line change
@@ -2504,7 +2504,6 @@
25042504
\effect
25052505
The signatures of the following member functions changed from taking an
25062506
\tcode{iterator} to taking a \tcode{const_iterator}:
2507-
25082507
\begin{itemize}
25092508
\item \tcode{insert(iter, val)} for \tcode{vector}, \tcode{deque}, \tcode{list},
25102509
\tcode{set}, \tcode{multiset}, \tcode{map}, \tcode{multimap}
@@ -2576,7 +2575,6 @@
25762575
Valid \CppIII{} code that relies on implicit boolean conversions will fail to
25772576
compile with this revision of \Cpp{}. Such conversions occur in the
25782577
following conditions:
2579-
25802578
\begin{itemize}
25812579
\item passing a value to a function that takes an argument of type \tcode{bool};
25822580
\item using \tcode{operator==} to compare to \tcode{false} or \tcode{true};
@@ -3679,7 +3677,6 @@
36793677
\pnum
36803678
Header \libheaderref{cstring}:
36813679
The following functions have different declarations:
3682-
36833680
\begin{itemize}
36843681
\item \tcode{strchr}
36853682
\item \tcode{strpbrk}
@@ -3693,7 +3690,6 @@
36933690
\pnum
36943691
Header \libheaderref{cwchar}:
36953692
The following functions have different declarations:
3696-
36973693
\begin{itemize}
36983694
\item \tcode{wcschr}
36993695
\item \tcode{wcspbrk}
@@ -3718,7 +3714,6 @@
37183714
\pnum
37193715
Header \libheaderref{cstdlib}:
37203716
The following functions have different behavior:
3721-
37223717
\begin{itemize}
37233718
\item \tcode{atexit}
37243719
\item \tcode{exit}

source/concepts.tex

-16
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)}

0 commit comments

Comments
 (0)