Skip to content

Commit 2ca4340

Browse files
jwakelytkoeppe
authored andcommitted
[vector.bool] Use injected-class-name in synopsis (#1844)
1 parent e6e8913 commit 2ca4340

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

source/containers.tex

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5656,14 +5656,14 @@
56565656
vector(size_type n, const bool& value, const Allocator& = Allocator());
56575657
template <class InputIterator>
56585658
vector(InputIterator first, InputIterator last, const Allocator& = Allocator());
5659-
vector(const vector<bool, Allocator>& x);
5660-
vector(vector<bool, Allocator>&& x);
5659+
vector(const vector& x);
5660+
vector(vector&& x);
56615661
vector(const vector&, const Allocator&);
56625662
vector(vector&&, const Allocator&);
56635663
vector(initializer_list<bool>, const Allocator& = Allocator()));
56645664
~vector();
5665-
vector<bool, Allocator>& operator=(const vector<bool, Allocator>& x);
5666-
vector<bool, Allocator>& operator=(vector<bool, Allocator>&& x);
5665+
vector& operator=(const vector& x);
5666+
vector& operator=(vector&& x);
56675667
vector& operator=(initializer_list<bool>);
56685668
template <class InputIterator>
56695669
void assign(InputIterator first, InputIterator last);
@@ -5718,7 +5718,7 @@
57185718

57195719
iterator erase(const_iterator position);
57205720
iterator erase(const_iterator first, const_iterator last);
5721-
void swap(vector<bool, Allocator>&);
5721+
void swap(vector&);
57225722
static void swap(reference x, reference y) noexcept;
57235723
void flip() noexcept; // flips all bits
57245724
void clear() noexcept;

0 commit comments

Comments
 (0)