From b63c3da5651a19520447634c3a3626f4e2a5295c Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Mon, 10 Jun 2013 12:08:59 -0400 Subject: [PATCH] add const_pointer to shared_vector --- pvDataApp/misc/sharedVector.h | 1 + 1 file changed, 1 insertion(+) diff --git a/pvDataApp/misc/sharedVector.h b/pvDataApp/misc/sharedVector.h index 3aee3db..895e325 100644 --- a/pvDataApp/misc/sharedVector.h +++ b/pvDataApp/misc/sharedVector.h @@ -243,6 +243,7 @@ public: typedef E& reference; typedef typename detail::decorate_const::type& const_reference; typedef E* pointer; + typedef typename detail::decorate_const::type* const_pointer; typedef E* iterator; typedef std::reverse_iterator reverse_iterator; typedef typename detail::decorate_const::type* const_iterator;