stl_iterator.h (move_iterator<>::pointer): Adjust typedef per DR 680 [Ready].
2007-11-07 Paolo Carlini <pcarlini@suse.de> * include/bits/stl_iterator.h (move_iterator<>::pointer): Adjust typedef per DR 680 [Ready]. From-SVN: r129959
This commit is contained in:
parent
cb88a3eae3
commit
1a1b20be14
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-11-07 Paolo Carlini <pcarlini@suse.de>
|
||||
|
||||
* include/bits/stl_iterator.h (move_iterator<>::pointer): Adjust
|
||||
typedef per DR 680 [Ready].
|
||||
|
||||
2007-11-06 Paolo Carlini <pcarlini@suse.de>
|
||||
|
||||
* include/bits/vector.tcc (vector<>::_M_insert_aux<>(iterator,
|
||||
|
|
|
@ -879,7 +879,8 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
|
|||
typedef _Iterator iterator_type;
|
||||
typedef typename iterator_traits<_Iterator>::difference_type
|
||||
difference_type;
|
||||
typedef typename iterator_traits<_Iterator>::pointer pointer;
|
||||
// NB: DR 680.
|
||||
typedef _Iterator pointer;
|
||||
typedef typename iterator_traits<_Iterator>::value_type value_type;
|
||||
typedef typename iterator_traits<_Iterator>::iterator_category
|
||||
iterator_category;
|
||||
|
|
Loading…
Add table
Reference in a new issue