mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-20 12:41:17 +08:00
initializer_list (initializer_list): Add missing typedefs.
2009-05-24 Eelis van der Weegen <eelis@eelis.net> * libsupc++/initializer_list (initializer_list): Add missing typedefs. From-SVN: r147828
This commit is contained in:
parent
d299370727
commit
ffa52e113d
@ -1,3 +1,7 @@
|
||||
2009-05-24 Eelis van der Weegen <eelis@eelis.net>
|
||||
|
||||
* libsupc++/initializer_list (initializer_list): Add missing typedefs.
|
||||
|
||||
2009-05-21 Benjamin Kosnik <bkoz@redhat.com>
|
||||
|
||||
PR libstdc++/40221
|
||||
|
@ -50,6 +50,15 @@ namespace std
|
||||
: __array(__a), __len(__l) { }
|
||||
|
||||
public:
|
||||
|
||||
typedef _E value_type;
|
||||
typedef const _E& reference;
|
||||
typedef const _E& const_reference;
|
||||
typedef size_t size_type;
|
||||
|
||||
typedef const _E* iterator;
|
||||
typedef const _E* const_iterator;
|
||||
|
||||
initializer_list()
|
||||
: __array(NULL), __len(0) { }
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user