Skip to content

Commit 0e2b1a6

Browse files
authored
[move.iterator] Use the template parameter directly in declaration of base()
1 parent 2360a59 commit 0e2b1a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/iterators.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4100,8 +4100,8 @@
41004100
template<class U> constexpr move_iterator(const move_iterator<U>& u);
41014101
template<class U> constexpr move_iterator& operator=(const move_iterator<U>& u);
41024102

4103-
constexpr const iterator_type& base() const &;
4104-
constexpr iterator_type base() &&;
4103+
constexpr const Iterator& base() const &;
4104+
constexpr Iterator base() &&;
41054105
constexpr reference operator*() const;
41064106

41074107
constexpr move_iterator& operator++();

0 commit comments

Comments
 (0)