Skip to content

Commit cf283d8

Browse files
jensmaurertkoeppe
authored andcommitted
Remove trailing whitespace in LaTeX sources. (#1468)
1 parent 5cd8627 commit cf283d8

30 files changed

+192
-192
lines changed

source/algorithms.tex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1335,7 +1335,7 @@
13351335
unsequenced with respect to one another within each thread of execution.
13361336
These threads of execution are either the invoking thread of execution or threads of
13371337
execution implicitly created by the library; the latter will provide weakly parallel
1338-
forward progress guarantees.
1338+
forward progress guarantees.
13391339
\begin{note}
13401340
This means that multiple function object invocations may be interleaved on a
13411341
single thread of execution, which overrides the usual guarantee from \ref{intro.execution}
@@ -2075,7 +2075,7 @@
20752075
\returns If \tcode{last1 - first1 != last2 - first2}, return \tcode{false}.
20762076
Otherwise return \tcode{true} if there exists a permutation of the elements in the
20772077
range \range{first2}{first2 + (last1 - first1)}, beginning with \tcode{ForwardIterator2
2078-
begin}, such that \tcode{equal(first1, last1, begin)} returns \tcode{true} or
2078+
begin}, such that \tcode{equal(first1, last1, begin)} returns \tcode{true} or
20792079
\tcode{equal(first1, last1, begin, pred)} returns \tcode{true}; otherwise, returns
20802080
\tcode{false}.
20812081

@@ -2287,7 +2287,7 @@
22872287

22882288
\begin{itemdescr}
22892289
\pnum
2290-
\effects For each non-negative integer
2290+
\effects For each non-negative integer
22912291
$i < n$, performs \tcode{*(result + i) = *(first + i)}.
22922292

22932293
\pnum
@@ -4648,7 +4648,7 @@
46484648
If \range{first1}{last1} contains $m$ elements that are equivalent to each other and
46494649
\range{first2}{last2} contains $n$ elements that are equivalent to them, then
46504650
$|m - n|$ of those elements shall be copied to the output range: the last
4651-
$m - n$ of these elements from \range{first1}{last1} if $m > n$, and the last
4651+
$m - n$ of these elements from \range{first1}{last1} if $m > n$, and the last
46524652
$n - m$ of these elements from \range{first2}{last2} if $m < n$.
46534653
\end{itemdescr}
46544654

source/atomics.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
bool atomic_compare_exchange_weak(@\placeholder{atomic-type}@*@\itcorr[-1]@, T*, T) noexcept;
7979
bool atomic_compare_exchange_strong(volatile @\placeholder{atomic-type}@*@\itcorr[-1]@, T*, T) noexcept;
8080
bool atomic_compare_exchange_strong(@\placeholder{atomic-type}@*@\itcorr[-1]@, T*, T) noexcept;
81-
bool atomic_compare_exchange_weak_explicit(volatile @\placeholder{atomic-type}@*@\itcorr[-1]@, T*, T,
81+
bool atomic_compare_exchange_weak_explicit(volatile @\placeholder{atomic-type}@*@\itcorr[-1]@, T*, T,
8282
memory_order, memory_order) noexcept;
8383
bool atomic_compare_exchange_weak_explicit(@\placeholder{atomic-type}@*@\itcorr[-1]@, T*, T,
8484
memory_order, memory_order) noexcept;
@@ -198,7 +198,7 @@
198198
\begin{codeblock}
199199
namespace std {
200200
enum memory_order {
201-
memory_order_relaxed, memory_order_consume, memory_order_acquire,
201+
memory_order_relaxed, memory_order_consume, memory_order_acquire,
202202
memory_order_release, memory_order_acq_rel, memory_order_seq_cst
203203
};
204204
}
@@ -805,7 +805,7 @@
805805
\pnum
806806
There are only a few kinds of operations on atomic types, though there are many
807807
instances on those kinds. This section specifies each general kind. The specific
808-
instances are defined in
808+
instances are defined in
809809
\ref{atomics.types.generic}, \ref{atomics.types.operations.general},
810810
\ref{atomics.types.operations.arith}, and \ref{atomics.types.operations.pointer}.
811811

source/basic.tex

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@
474474
were present in the definition of \tcode{D}; that is, the default
475475
argument is subject to the requirements described in this paragraph (and, if
476476
the default argument has subexpressions with default arguments, this
477-
requirement applies recursively).\footnote{\ref{dcl.fct.default}
477+
requirement applies recursively).\footnote{\ref{dcl.fct.default}
478478
describes how default argument names are looked up.}
479479

480480
\item if \tcode{D} is a class with an implicitly-declared
@@ -764,7 +764,7 @@
764764
\pnum
765765
\indextext{parameter!scope of}%
766766
The potential scope of a function parameter name
767-
(including one appearing in a
767+
(including one appearing in a
768768
\grammarterm{lambda-declarator})
769769
or of a function-local predefined variable
770770
in a function
@@ -3854,7 +3854,7 @@
38543854
\indextext{floating-point type!implementation-defined}%
38553855
\begin{note}
38563856
This International Standard imposes no requirements on the accuracy of
3857-
floating-point operations; see also~\ref{support.limits}.
3857+
floating-point operations; see also~\ref{support.limits}.
38583858
\end{note}
38593859
Integral and floating types are collectively
38603860
called \defnx{arithmetic}{type!arithmetic} types.
@@ -4061,9 +4061,9 @@
40614061
\defn{volatile-qualified} version, and a
40624062
\defn{const-volatile-qualified} version. The
40634063
type of an object~(\ref{intro.object}) includes the \grammarterm{cv-qualifier}{s}
4064-
specified in the \grammarterm{decl-specifier-seq}~(\ref{dcl.spec}),
4064+
specified in the \grammarterm{decl-specifier-seq}~(\ref{dcl.spec}),
40654065
\grammarterm{declarator} (Clause~\ref{dcl.decl}),
4066-
\grammarterm{type-id}~(\ref{dcl.name}), or
4066+
\grammarterm{type-id}~(\ref{dcl.name}), or
40674067
\grammarterm{new-type-id}~(\ref{expr.new}) when the object is created.
40684068
\begin{itemize}
40694069
\item A \defnx{const object}{object!const} is an object of type \tcode{const T} or a

source/classes.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@
250250

251251
struct T { // trivial but not standard-layout
252252
int i;
253-
private:
253+
private:
254254
int j;
255255
};
256256

source/compatibility.tex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
names are referred to outside the \tcode{struct}.
147147
The latter is probably rare.
148148

149-
\ref{basic.link} [also \ref{dcl.type}]
149+
\ref{basic.link} [also \ref{dcl.type}]
150150
\change A name of file scope that is explicitly declared \tcode{const}, and not explicitly
151151
declared \tcode{extern}, has internal linkage, while in C it would have external linkage.
152152
\rationale
@@ -915,7 +915,7 @@
915915
\ref{expr.log.and}
916916
\change \tcode{\&\&} is valid in a \grammarterm{type-name}.
917917
\rationale Required for new features.
918-
\effect
918+
\effect
919919
Valid \CppIII code may fail to compile or produce different results in
920920
this International Standard, as the following example illustrates:
921921

@@ -1577,7 +1577,7 @@
15771577
struct derived;
15781578
struct base {
15791579
friend struct derived;
1580-
private:
1580+
private:
15811581
base();
15821582
};
15831583
struct derived : base {};
@@ -1711,7 +1711,7 @@
17111711
\begin{codeblock}
17121712
#include <set>
17131713

1714-
struct compare
1714+
struct compare
17151715
{
17161716
bool operator()(int a, int b)
17171717
{

source/containers.tex

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@
277277
\begin{note}
278278
The algorithm \tcode{equal()} is defined in Clause~\ref{algorithms}.
279279
\end{note}
280-
280+
281281
\pnum
282282
The member function \tcode{size()} returns the number of elements in the container.
283283
The number of elements is defined by the rules of
@@ -547,7 +547,7 @@
547547
\end{codeblock}
548548
where \tcode{p} is the address of the uninitialized storage for the element
549549
allocated within \tcode{X}.
550-
550+
551551
\item
552552
\tcode{T} is \defnx{\tcode{MoveInsertable} into \tcode{X}}
553553
{MoveInsertable into X@\tcode{MoveInsertable} into \tcode{X}}
@@ -4155,7 +4155,7 @@
41554155
\begin{itemdescr}
41564156
\pnum
41574157
\effects If \tcode{sz < distance(begin(), end())}, erases the last \tcode{distance(begin(),
4158-
end()) - sz} elements from the list. Otherwise, inserts \tcode{sz - distance(begin(), end())}
4158+
end()) - sz} elements from the list. Otherwise, inserts \tcode{sz - distance(begin(), end())}
41594159
copies of \tcode{c} at the end of the list.
41604160

41614161
\pnum
@@ -5412,7 +5412,7 @@
54125412
\begin{note} The request is non-binding to allow latitude for
54135413
implementation-specific optimizations. \end{note}
54145414
It does not increase \tcode{capacity()}, but may reduce \tcode{capacity()}
5415-
by causing reallocation.
5415+
by causing reallocation.
54165416
If an exception is thrown other than by the move constructor
54175417
of a non-\tcode{CopyInsertable} \tcode{T} there are no effects.
54185418

@@ -6269,7 +6269,7 @@
62696269
\begin{itemdescr}
62706270
\pnum
62716271
\effects
6272-
The first form is equivalent to
6272+
The first form is equivalent to
62736273
\tcode{return emplace(std::forward<P>(x))}. The second form is
62746274
equivalent to \tcode{return emplace_hint(position, std::forward<P>(x))}.
62756275

@@ -6733,7 +6733,7 @@
67336733
\begin{itemdescr}
67346734
\pnum
67356735
\effects
6736-
The first form is equivalent to
6736+
The first form is equivalent to
67376737
\tcode{return emplace(std::forward<P>(x))}. The second form is
67386738
equivalent to \tcode{return emplace_hint(position, std::forward<P>(x))}.
67396739

@@ -8035,12 +8035,12 @@
80358035
unordered_multimap(InputIterator f, InputIterator l, size_type n, const allocator_type& a)
80368036
: unordered_multimap(f, l, n, hasher(), key_equal(), a) { }
80378037
template <class InputIterator>
8038-
unordered_multimap(InputIterator f, InputIterator l, size_type n, const hasher& hf,
8038+
unordered_multimap(InputIterator f, InputIterator l, size_type n, const hasher& hf,
80398039
const allocator_type& a)
80408040
: unordered_multimap(f, l, n, hf, key_equal(), a) { }
80418041
unordered_multimap(initializer_list<value_type> il, size_type n, const allocator_type& a)
80428042
: unordered_multimap(il, n, hasher(), key_equal(), a) { }
8043-
unordered_multimap(initializer_list<value_type> il, size_type n, const hasher& hf,
8043+
unordered_multimap(initializer_list<value_type> il, size_type n, const hasher& hf,
80448044
const allocator_type& a)
80458045
: unordered_multimap(il, n, hf, key_equal(), a) { }
80468046
~unordered_multimap();
@@ -8195,7 +8195,7 @@
81958195
provided, the number of buckets is \impldef{default number of buckets in
81968196
\tcode{unordered_multimap}}. Then
81978197
inserts elements from the range \range{f}{l}
8198-
for the first form, or from the range
8198+
for the first form, or from the range
81998199
\range{il.begin()}{il.end()} for the second form.
82008200
\tcode{max_load_factor()} returns \tcode{1.0}.
82018201

@@ -8490,7 +8490,7 @@
84908490
provided, the number of buckets is \impldef{default number of buckets in
84918491
\tcode{unordered_set}}. Then
84928492
inserts elements from the range \range{f}{l}
8493-
for the first form, or from the range
8493+
for the first form, or from the range
84948494
\range{il.begin()}{il.end()} for the second form.
84958495
\tcode{max_load_factor()} returns \tcode{1.0}.
84968496

@@ -8600,12 +8600,12 @@
86008600
unordered_multiset(InputIterator f, InputIterator l, size_type n, const allocator_type& a)
86018601
: unordered_multiset(f, l, n, hasher(), key_equal(), a) { }
86028602
template <class InputIterator>
8603-
unordered_multiset(InputIterator f, InputIterator l, size_type n, const hasher& hf,
8603+
unordered_multiset(InputIterator f, InputIterator l, size_type n, const hasher& hf,
86048604
const allocator_type& a)
86058605
: unordered_multiset(f, l, n, hf, key_equal(), a) { }
86068606
unordered_multiset(initializer_list<value_type> il, size_type n, const allocator_type& a)
86078607
: unordered_multiset(il, n, hasher(), key_equal(), a) { }
8608-
unordered_multiset(initializer_list<value_type> il, size_type n, const hasher& hf,
8608+
unordered_multiset(initializer_list<value_type> il, size_type n, const hasher& hf,
86098609
const allocator_type& a)
86108610
: unordered_multiset(il, n, hf, key_equal(), a) { }
86118611
~unordered_multiset();

0 commit comments

Comments
 (0)