alloc_traits.h (__alloc_traits::difference_type): Define.

* include/ext/alloc_traits.h (__alloc_traits::difference_type):
	Define.

From-SVN: r186673
This commit is contained in:
Jonathan Wakely 2012-04-22 14:38:33 +00:00 committed by Jonathan Wakely
parent b3baa4a5e7
commit 605aed299a
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2012-04-22 Jonathan Wakely <jwakely.gcc@gmail.com>
* include/ext/alloc_traits.h (__alloc_traits::difference_type):
Define.
2012-04-22 Jonathan Wakely <jwakely.gcc@gmail.com>
PR libstdc++/53027

View File

@ -99,6 +99,7 @@ template<typename _Alloc>
typedef typename _Base_type::pointer pointer;
typedef typename _Base_type::const_pointer const_pointer;
typedef typename _Base_type::size_type size_type;
typedef typename _Base_type::difference_type difference_type;
// C++0x allocators do not define reference or const_reference
typedef value_type& reference;
typedef const value_type& const_reference;
@ -170,6 +171,7 @@ template<typename _Alloc>
typedef typename _Alloc::reference reference;
typedef typename _Alloc::const_reference const_reference;
typedef typename _Alloc::size_type size_type;
typedef typename _Alloc::difference_type difference_type;
static pointer
allocate(_Alloc& __a, size_type __n)