Skip to content

Commit bea22b4

Browse files
committed
Remove more inappropriate paragraph breaks.
1 parent a050040 commit bea22b4

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$,
@@ -10782,7 +10779,6 @@
1078210779
\pnum
1078310780
Some algorithms in this subclause are constrained with the following
1078410781
exposition-only concepts:
10785-
1078610782
\begin{itemdecl}
1078710783
template<class I>
1078810784
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}
@@ -4163,7 +4162,6 @@
41634162

41644163
\pnum
41654164
Comparing alignments is meaningful and provides the obvious results:
4166-
41674165
\begin{itemize}
41684166
\item Two alignments are equal when their numeric values are equal.
41694167
\item Two alignments are different when their numeric values are not equal.
@@ -5486,7 +5484,6 @@
54865484

54875485
\pnum
54885486
Every integer type has an \term{integer conversion rank} defined as follows:
5489-
54905487
\begin{itemize}
54915488
\item No two signed integer types other than \keyword{char} and \tcode{\keyword{signed}
54925489
\keyword{char}} (if \keyword{char} is signed) have the same rank, even if they have
@@ -6048,7 +6045,6 @@
60486045
\item
60496046
for some evaluation $X$, $A$ is dependency-ordered before $X$ and
60506047
$X$ carries a dependency to $B$.
6051-
60526048
\end{itemize}
60536049
\begin{note}
60546050
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
@@ -1591,7 +1591,6 @@
15911591
that is of class type (or array thereof),
15921592
the constructor selected to copy/move that member is trivial;
15931593
\end{itemize}
1594-
15951594
\indextext{constructor!move!non-trivial}%
15961595
otherwise the copy/move constructor is
15971596
\defnx{non-trivial}{constructor!copy!nontrivial}.
@@ -3225,7 +3224,6 @@
32253224
destructor and \tcode{N} has a non-trivial constructor (for instance, if they declare or inherit
32263225
virtual functions), the active member of \tcode{u} can be safely switched from \tcode{m} to
32273226
\tcode{n} using the destructor and placement \grammarterm{new-expression} as follows:
3228-
32293227
\begin{codeblock}
32303228
u.m.~M();
32313229
new (&u.n) N;
@@ -3402,7 +3400,6 @@
34023400
\indextext{multiple inheritance}%
34033401
A list of base classes can be specified in a class definition using
34043402
the notation:
3405-
34063403
\begin{bnf}
34073404
\nontermdef{base-clause}\br
34083405
\terminal{:} base-specifier-list
@@ -4859,7 +4856,6 @@
48594856
\pnum
48604857
A friend declaration that does not declare a function
48614858
shall have one of the following forms:
4862-
48634859
\begin{ncsimplebnf}
48644860
\keyword{friend} elaborated-type-specifier \terminal{;}\br
48654861
\keyword{friend} simple-type-specifier \terminal{;}\br
@@ -5364,7 +5360,6 @@
53645360
non-static data members can be specified by a
53655361
\grammarterm{ctor-initializer},
53665362
which has the form
5367-
53685363
\begin{bnf}
53695364
\nontermdef{ctor-initializer}\br
53705365
\terminal{:} mem-initializer-list
@@ -5826,7 +5821,6 @@
58265821
X(const Mixins&... mixins) : Mixins(mixins)... { }
58275822
};
58285823
\end{codeblock}
5829-
58305824
\end{example}
58315825

58325826
\rSec2[class.inhctor.init]{Initialization by inherited constructor}%
@@ -6434,7 +6428,6 @@
64346428
A binary operator expression \tcode{a @ b} is
64356429
\defnx{usable}{usable!binary operator expression}
64366430
if either
6437-
64386431
\begin{itemize}
64396432
\item
64406433
\tcode{a} or \tcode{b} is of class or enumeration type and
@@ -6555,7 +6548,6 @@
65556548
of type \tcode{R}\iref{cmp.categories}
65566549
of glvalues \tcode{a} and \tcode{b} of the same type
65576550
is defined as follows:
6558-
65596551
\begin{itemize}
65606552
\item
65616553
If \tcode{a <=> b} is usable\iref{class.compare.default} and
@@ -6654,7 +6646,6 @@
66546646
of a possibly-empty list of $n$ comparison category types
66556647
$\tcode{T}_0$, $\tcode{T}_1$, $\dotsc$, $\tcode{T}_{n-1}$
66566648
is defined as follows:
6657-
66586649
\begin{itemize}
66596650
\item
66606651
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
@@ -2040,7 +2040,6 @@
20402040
\effect
20412041
The signatures of the following member functions changed from taking an
20422042
\tcode{iterator} to taking a \tcode{const_iterator}:
2043-
20442043
\begin{itemize}
20452044
\item \tcode{insert(iter, val)} for \tcode{vector}, \tcode{deque}, \tcode{list},
20462045
\tcode{set}, \tcode{multiset}, \tcode{map}, \tcode{multimap}
@@ -2112,7 +2111,6 @@
21122111
Valid \CppIII{} code that relies on implicit boolean conversions will fail to
21132112
compile with this revision of \Cpp{}. Such conversions occur in the
21142113
following conditions:
2115-
21162114
\begin{itemize}
21172115
\item passing a value to a function that takes an argument of type \tcode{bool};
21182116
\item using \tcode{operator==} to compare to \tcode{false} or \tcode{true};
@@ -3133,7 +3131,6 @@
31333131
\pnum
31343132
Header \libheaderref{cstring}:
31353133
The following functions have different declarations:
3136-
31373134
\begin{itemize}
31383135
\item \tcode{strchr}
31393136
\item \tcode{strpbrk}
@@ -3147,7 +3144,6 @@
31473144
\pnum
31483145
Header \libheaderref{cwchar}:
31493146
The following functions have different declarations:
3150-
31513147
\begin{itemize}
31523148
\item \tcode{wcschr}
31533149
\item \tcode{wcspbrk}
@@ -3172,7 +3168,6 @@
31723168
\pnum
31733169
Header \libheaderref{cstdlib}:
31743170
The following functions have different behavior:
3175-
31763171
\begin{itemize}
31773172
\item \tcode{atexit}
31783173
\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}.
@@ -3931,14 +3928,12 @@
39313928
to
39323929
\tcode{j}
39333930
is positive, the following condition holds:
3934-
39353931
\begin{codeblock}
39363932
value_comp(*j, *i) == false
39373933
\end{codeblock}
39383934

39393935
\pnum
39403936
For associative containers with unique keys the stronger condition holds:
3941-
39423937
\begin{codeblock}
39433938
value_comp(*i, *j) != false
39443939
\end{codeblock}
@@ -5929,7 +5924,6 @@
59295924

59305925
\pnum
59315926
The following exposition-only alias template may appear in deduction guides for sequence containers:
5932-
59335927
\begin{codeblock}
59345928
template<class InputIterator>
59355929
using @\placeholdernc{iter-value-type}@ = typename iterator_traits<InputIterator>::value_type; // \expos
@@ -8121,7 +8115,6 @@
81218115
appends \tcode{sz - size()} default-inserted elements to the
81228116
sequence.
81238117
If \tcode{sz <= size()}, equivalent to:
8124-
81258118
\begin{codeblock}
81268119
list<T>::iterator it = begin();
81278120
advance(it, sz);
@@ -9335,13 +9328,11 @@
93359328
\pnum
93369329
\effects
93379330
Exchanges the contents of \tcode{x} and \tcode{y} as if by:
9338-
93399331
\begin{codeblock}
93409332
bool b = x;
93419333
x = y;
93429334
y = b;
93439335
\end{codeblock}
9344-
93459336
\end{itemdescr}
93469337

93479338
\begin{itemdecl}

0 commit comments

Comments
 (0)