Skip to content

Commit 5f07872

Browse files
committed
Remove more inappropriate paragraph breaks.
1 parent 57d4c5f commit 5f07872

26 files changed

+0
-272
lines changed

source/algorithms.tex

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8698,7 +8698,6 @@
86988698
If we define \tcode{equiv(a, b)} as \tcode{!comp(a, b) \&\& !comp(b, a)},
86998699
then the requirements are that \tcode{comp} and \tcode{equiv}
87008700
both be transitive relations:
8701-
87028701
\begin{itemize}
87038702
\item \tcode{comp(a, b) \&\& comp(b, c)} implies \tcode{comp(a, c)}
87048703
\item \tcode{equiv(a, b) \&\& equiv(b, c)} implies \tcode{equiv(a, c)}
@@ -9747,7 +9746,6 @@
97479746
For the parallel algorithm overloads,
97489747
\bigoh{N \log N} swaps and \bigoh{N} applications of the predicate.
97499748
\end{itemize}
9750-
97519749
\end{itemdescr}
97529750

97539751
\indexlibraryglobal{stable_partition}%
@@ -10882,7 +10880,6 @@
1088210880
{heap with respect to comp and proj@heap with respect to \tcode{comp} and \tcode{proj}}
1088310881
for a comparator and projection \tcode{comp} and \tcode{proj}
1088410882
if its elements are organized such that:
10885-
1088610883
\begin{itemize}
1088710884
\item
1088810885
With \tcode{$N$ = b - a}, for all $i$, $0 < i < N$,
@@ -13546,7 +13543,6 @@
1354613543
\pnum
1354713544
Some algorithms in this subclause are constrained with the following
1354813545
exposition-only concepts:
13549-
1355013546
\begin{itemdecl}
1355113547
template<class I>
1355213548
concept @\defexposconcept{nothrow-input-iterator}@ = // \expos

source/basic.tex

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,6 @@
287287
enum { up, down }; // defines \tcode{up} and \tcode{down}
288288
namespace N { int d; } // defines \tcode{N} and \tcode{N::d}
289289
X anX; // defines \tcode{anX}
290-
291290
\end{codeblock}
292291
whereas these are just declarations:
293292
\begin{codeblock}
@@ -824,7 +823,6 @@
824823

825824
\pnum
826825
For the purposes of the preceding requirements:
827-
828826
\begin{itemize}
829827
\item If \tcode{D} is a class with an implicitly-declared
830828
constructor\iref{class.default.ctor,class.copy.ctor},
@@ -6108,7 +6106,6 @@
61086106

61096107
\pnum
61106108
Every integer type has an \term{integer conversion rank} defined as follows:
6111-
61126109
\begin{itemize}
61136110
\item No two signed integer types other than \keyword{char} and \tcode{\keyword{signed}
61146111
\keyword{char}} (if \keyword{char} is signed) have the same rank, even if they have

source/classes.tex

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1717,7 +1717,6 @@
17171717
that is of class type (or array thereof),
17181718
the constructor selected to copy/move that member is trivial;
17191719
\end{itemize}
1720-
17211720
\indextext{constructor!move!non-trivial}%
17221721
otherwise the copy/move constructor is
17231722
\defnx{non-trivial}{constructor!copy!nontrivial}.
@@ -3338,7 +3337,6 @@
33383337
destructor and \tcode{N} has a non-trivial constructor (for instance, if they declare or inherit
33393338
virtual functions), the active member of \tcode{u} can be safely switched from \tcode{m} to
33403339
\tcode{n} using the destructor and placement \grammarterm{new-expression} as follows:
3341-
33423340
\begin{codeblock}
33433341
u.m.~M();
33443342
new (&u.n) N;
@@ -3516,7 +3514,6 @@
35163514
\indextext{multiple inheritance}%
35173515
A list of base classes can be specified in a class definition using
35183516
the notation:
3519-
35203517
\begin{bnf}
35213518
\nontermdef{base-clause}\br
35223519
\terminal{:} base-specifier-list
@@ -5491,7 +5488,6 @@
54915488
non-static data members can be specified by a
54925489
\grammarterm{ctor-initializer},
54935490
which has the form
5494-
54955491
\begin{bnf}
54965492
\nontermdef{ctor-initializer}\br
54975493
\terminal{:} mem-initializer-list
@@ -5962,7 +5958,6 @@
59625958
X(const Mixins&... mixins) : Mixins(mixins)... { }
59635959
};
59645960
\end{codeblock}
5965-
59665961
\end{example}
59675962

59685963
\rSec2[class.inhctor.init]{Initialization by inherited constructor}%
@@ -6618,7 +6613,6 @@
66186613
A binary operator expression \tcode{a @ b} is
66196614
\defnx{usable}{usable!binary operator expression}
66206615
if either
6621-
66226616
\begin{itemize}
66236617
\item
66246618
\tcode{a} or \tcode{b} is of class or enumeration type and
@@ -6739,7 +6733,6 @@
67396733
of type \tcode{R}\iref{cmp.categories}
67406734
of glvalues \tcode{a} and \tcode{b} of the same type
67416735
is defined as follows:
6742-
67436736
\begin{itemize}
67446737
\item
67456738
If \tcode{a <=> b} is usable\iref{class.compare.default} and
@@ -6839,7 +6832,6 @@
68396832
of a possibly-empty list of $n$ comparison category types
68406833
$\tcode{T}_0$, $\tcode{T}_1$, $\dotsc$, $\tcode{T}_{n-1}$
68416834
is defined as follows:
6842-
68436835
\begin{itemize}
68446836
\item
68456837
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
@@ -2619,7 +2619,6 @@
26192619
\effect
26202620
The signatures of the following member functions changed from taking an
26212621
\tcode{iterator} to taking a \tcode{const_iterator}:
2622-
26232622
\begin{itemize}
26242623
\item \tcode{insert(iter, val)} for \tcode{vector}, \tcode{deque}, \tcode{list},
26252624
\tcode{set}, \tcode{multiset}, \tcode{map}, \tcode{multimap}
@@ -2691,7 +2690,6 @@
26912690
Valid \CppIII{} code that relies on implicit boolean conversions will fail to
26922691
compile with this revision of \Cpp{}. Such conversions occur in the
26932692
following conditions:
2694-
26952693
\begin{itemize}
26962694
\item passing a value to a function that takes an argument of type \tcode{bool};
26972695
\item using \tcode{operator==} to compare to \tcode{false} or \tcode{true};
@@ -3771,7 +3769,6 @@
37713769
\pnum
37723770
Header \libheaderref{cstring}:
37733771
The following functions have different declarations:
3774-
37753772
\begin{itemize}
37763773
\item \tcode{strchr}
37773774
\item \tcode{strpbrk}
@@ -3785,7 +3782,6 @@
37853782
\pnum
37863783
Header \libheaderref{cwchar}:
37873784
The following functions have different declarations:
3788-
37893785
\begin{itemize}
37903786
\item \tcode{wcschr}
37913787
\item \tcode{wcspbrk}
@@ -3810,7 +3806,6 @@
38103806
\pnum
38113807
Header \libheaderref{cstdlib}:
38123808
The following functions have different behavior:
3813-
38143809
\begin{itemize}
38153810
\item \tcode{atexit}
38163811
\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)}

0 commit comments

Comments
 (0)