From 358b14915b346bdd772174f9165a1a1576db6bbe Mon Sep 17 00:00:00 2001 From: Thomas Witt Date: Fri, 25 Apr 2003 21:55:33 +0000 Subject: [PATCH] Fixed forward_iterator_archetype pointer type to be ptr to const. [SVN r18315] --- include/boost/concept_archetype.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/concept_archetype.hpp b/include/boost/concept_archetype.hpp index 41b4e55..7acd80c 100644 --- a/include/boost/concept_archetype.hpp +++ b/include/boost/concept_archetype.hpp @@ -532,7 +532,7 @@ namespace boost { typedef std::forward_iterator_tag iterator_category; typedef T value_type; typedef const T& reference; - typedef T* pointer; + typedef T const* pointer; typedef std::ptrdiff_t difference_type; forward_iterator_archetype() { } self& operator=(const self&) { return *this; }