Skip to content

Commit 49a3f96

Browse files
committed
Remove more inappropriate paragraph breaks.
1 parent 7c8e0d8 commit 49a3f96

26 files changed

+0
-268
lines changed

source/algorithms.tex

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8716,7 +8716,6 @@
87168716
If we define \tcode{equiv(a, b)} as \tcode{!comp(a, b) \&\& !comp(b, a)},
87178717
then the requirements are that \tcode{comp} and \tcode{equiv}
87188718
both be transitive relations:
8719-
87208719
\begin{itemize}
87218720
\item \tcode{comp(a, b) \&\& comp(b, c)} implies \tcode{comp(a, c)}
87228721
\item \tcode{equiv(a, b) \&\& equiv(b, c)} implies \tcode{equiv(a, c)}
@@ -9768,7 +9767,6 @@
97689767
For the parallel algorithm overloads,
97699768
\bigoh{N \log N} swaps and \bigoh{N} applications of the predicate.
97709769
\end{itemize}
9771-
97729770
\end{itemdescr}
97739771

97749772
\indexlibraryglobal{stable_partition}%
@@ -10916,7 +10914,6 @@
1091610914
{heap with respect to comp and proj@heap with respect to \tcode{comp} and \tcode{proj}}
1091710915
for a comparator and projection \tcode{comp} and \tcode{proj}
1091810916
if its elements are organized such that:
10919-
1092010917
\begin{itemize}
1092110918
\item
1092210919
With \tcode{$N$ = b - a}, for all $i$, $0 < i < N$,
@@ -13580,7 +13577,6 @@
1358013577
\pnum
1358113578
Some algorithms in this subclause are constrained with the following
1358213579
exposition-only concepts:
13583-
1358413580
\begin{itemdecl}
1358513581
template<class I>
1358613582
concept @\defexposconcept{nothrow-input-iterator}@ = // \expos

source/basic.tex

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,6 @@
294294
enum { up, down }; // defines \tcode{up} and \tcode{down}
295295
namespace N { int d; } // defines \tcode{N} and \tcode{N::d}
296296
X anX; // defines \tcode{anX}
297-
298297
\end{codeblock}
299298
whereas these are just declarations:
300299
\begin{codeblock}
@@ -832,7 +831,6 @@
832831

833832
\pnum
834833
For the purposes of the preceding requirements:
835-
836834
\begin{itemize}
837835
\item If \tcode{D} is a class with an implicitly-declared
838836
constructor\iref{class.default.ctor,class.copy.ctor},
@@ -6170,7 +6168,6 @@
61706168

61716169
\pnum
61726170
Every integer type has an \term{integer conversion rank} defined as follows:
6173-
61746171
\begin{itemize}
61756172
\item No two signed integer types other than \keyword{char} and \tcode{\keyword{signed}
61766173
\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
@@ -1626,7 +1626,6 @@
16261626
that is of class type (or array thereof),
16271627
the constructor selected to copy/move that member is trivial;
16281628
\end{itemize}
1629-
16301629
\indextext{constructor!move!non-trivial}%
16311630
otherwise the copy/move constructor is
16321631
\defnx{non-trivial}{constructor!copy!nontrivial}.
@@ -3244,7 +3243,6 @@
32443243
destructor and \tcode{N} has a non-trivial constructor (for instance, if they declare or inherit
32453244
virtual functions), the active member of \tcode{u} can be safely switched from \tcode{m} to
32463245
\tcode{n} using the destructor and placement \grammarterm{new-expression} as follows:
3247-
32483246
\begin{codeblock}
32493247
u.m.~M();
32503248
new (&u.n) N;
@@ -3423,7 +3421,6 @@
34233421
\indextext{multiple inheritance}%
34243422
A list of base classes can be specified in a class definition using
34253423
the notation:
3426-
34273424
\begin{bnf}
34283425
\nontermdef{base-clause}\br
34293426
\terminal{:} base-specifier-list
@@ -5402,7 +5399,6 @@
54025399
non-static data members can be specified by a
54035400
\grammarterm{ctor-initializer},
54045401
which has the form
5405-
54065402
\begin{bnf}
54075403
\nontermdef{ctor-initializer}\br
54085404
\terminal{:} mem-initializer-list
@@ -5873,7 +5869,6 @@
58735869
X(const Mixins&... mixins) : Mixins(mixins)... { }
58745870
};
58755871
\end{codeblock}
5876-
58775872
\end{example}
58785873

58795874
\rSec2[class.inhctor.init]{Initialization by inherited constructor}%
@@ -6529,7 +6524,6 @@
65296524
A binary operator expression \tcode{a @ b} is
65306525
\defnx{usable}{usable!binary operator expression}
65316526
if either
6532-
65336527
\begin{itemize}
65346528
\item
65356529
\tcode{a} or \tcode{b} is of class or enumeration type and
@@ -6650,7 +6644,6 @@
66506644
of type \tcode{R}\iref{cmp.categories}
66516645
of glvalues \tcode{a} and \tcode{b} of the same type
66526646
is defined as follows:
6653-
66546647
\begin{itemize}
66556648
\item
66566649
If \tcode{a <=> b} is usable\iref{class.compare.default} and
@@ -6750,7 +6743,6 @@
67506743
of a possibly-empty list of $n$ comparison category types
67516744
$\tcode{T}_0$, $\tcode{T}_1$, $\dotsc$, $\tcode{T}_{n-1}$
67526745
is defined as follows:
6753-
67546746
\begin{itemize}
67556747
\item
67566748
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
@@ -2592,7 +2592,6 @@
25922592
\effect
25932593
The signatures of the following member functions changed from taking an
25942594
\tcode{iterator} to taking a \tcode{const_iterator}:
2595-
25962595
\begin{itemize}
25972596
\item \tcode{insert(iter, val)} for \tcode{vector}, \tcode{deque}, \tcode{list},
25982597
\tcode{set}, \tcode{multiset}, \tcode{map}, \tcode{multimap}
@@ -2664,7 +2663,6 @@
26642663
Valid \CppIII{} code that relies on implicit boolean conversions will fail to
26652664
compile with this revision of \Cpp{}. Such conversions occur in the
26662665
following conditions:
2667-
26682666
\begin{itemize}
26692667
\item passing a value to a function that takes an argument of type \tcode{bool};
26702668
\item using \tcode{operator==} to compare to \tcode{false} or \tcode{true};
@@ -3787,7 +3785,6 @@
37873785
\pnum
37883786
Header \libheaderref{cstring}:
37893787
The following functions have different declarations:
3790-
37913788
\begin{itemize}
37923789
\item \tcode{strchr}
37933790
\item \tcode{strpbrk}
@@ -3801,7 +3798,6 @@
38013798
\pnum
38023799
Header \libheaderref{cwchar}:
38033800
The following functions have different declarations:
3804-
38053801
\begin{itemize}
38063802
\item \tcode{wcschr}
38073803
\item \tcode{wcspbrk}
@@ -3826,7 +3822,6 @@
38263822
\pnum
38273823
Header \libheaderref{cstdlib}:
38283824
The following functions have different behavior:
3829-
38303825
\begin{itemize}
38313826
\item \tcode{atexit}
38323827
\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 & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,6 @@
688688
\ref{vector.modifiers})
689689
all container types defined in this Clause meet
690690
the following additional requirements:
691-
692691
\begin{itemize}
693692
\item
694693
If an exception is thrown by an
@@ -751,7 +750,6 @@
751750
Likewise, the extent to which an implementation determines that a type cannot be
752751
an allocator is unspecified, except that as a minimum a type \tcode{A} shall not qualify
753752
as an allocator unless it meets both of the following conditions:
754-
755753
\begin{itemize}
756754
\item The \grammarterm{qualified-id} \tcode{A::value_type}
757755
is valid and denotes a type\iref{temp.deduct}.
@@ -982,7 +980,6 @@
982980
the terms below are defined as if \tcode{A} were
983981
\tcode{allocator<T>} --- no allocator object needs to be created
984982
and user specializations of \tcode{allocator<T>} are not instantiated:
985-
986983
\begin{itemize}
987984
\item
988985
\tcode{T} is \defnx{\oldconcept{DefaultInsertable} into \tcode{X}}
@@ -4045,14 +4042,12 @@
40454042
to
40464043
\tcode{j}
40474044
is positive, the following condition holds:
4048-
40494045
\begin{codeblock}
40504046
value_comp(*j, *i) == false
40514047
\end{codeblock}
40524048

40534049
\pnum
40544050
For associative containers with unique keys the stronger condition holds:
4055-
40564051
\begin{codeblock}
40574052
value_comp(*i, *j) != false
40584053
\end{codeblock}
@@ -6064,7 +6059,6 @@
60646059

60656060
\pnum
60666061
The following exposition-only alias template may appear in deduction guides for sequence containers:
6067-
60686062
\begin{codeblock}
60696063
template<class InputIterator>
60706064
using @\placeholdernc{iter-value-type}@ = iterator_traits<InputIterator>::value_type; // \expos
@@ -9343,7 +9337,6 @@
93439337
appends \tcode{sz - size()} default-inserted elements to the
93449338
sequence.
93459339
If \tcode{sz <= size()}, equivalent to:
9346-
93479340
\begin{codeblock}
93489341
list<T>::iterator it = begin();
93499342
advance(it, sz);
@@ -20310,7 +20303,6 @@
2031020303
\tcode{stack},
2031120304
the library provides the following formatter specialization
2031220305
where \tcode{\placeholder{adaptor-type}} is the name of the template:
20313-
2031420306
\indexlibraryglobal{formatter}%
2031520307
\begin{codeblock}
2031620308
namespace std {
@@ -24566,7 +24558,6 @@
2456624558
\pnum
2456724559
\result
2456824560
A type \tcode{OP} such that:
24569-
2457024561
\begin{itemize}
2457124562
\item
2457224563
\tcode{OP} meets the accessor policy requirements,
@@ -25922,7 +25913,6 @@
2592225913

2592325914
\pnum
2592425915
Let \tcode{SubExtents} be a specialization of \tcode{extents} such that:
25925-
2592625916
\begin{itemize}
2592725917
\item
2592825918
\tcode{SubExtents::rank()} equals
@@ -25934,7 +25924,6 @@
2593425924
\tcode{SubExt\-ents::static_extent(\placeholder{MAP_RANK}(slices, $k$))}
2593525925
equals the following, where $\Sigma_k$
2593625926
denotes the type of \tcode{slices...[$k$]}:
25937-
2593825927
\begin{itemize}
2593925928
\item
2594025929
\tcode{Extents::static_extent($k$)}

0 commit comments

Comments
 (0)