add const_pointer to shared_vector

This commit is contained in:
Michael Davidsaver
2013-06-10 12:08:59 -04:00
parent 0b89f08d09
commit b63c3da565

View File

@@ -243,6 +243,7 @@ public:
typedef E& reference;
typedef typename detail::decorate_const<E>::type& const_reference;
typedef E* pointer;
typedef typename detail::decorate_const<E>::type* const_pointer;
typedef E* iterator;
typedef std::reverse_iterator<iterator> reverse_iterator;
typedef typename detail::decorate_const<E>::type* const_iterator;