From 400f35cbb013ac9a85fd6d447d3bd09f53a84309 Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Sun, 11 Jan 2004 15:09:26 +0000 Subject: [PATCH] fixed some bugs [SVN r21588] --- include/boost/iterator/iterator_archetypes.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/iterator/iterator_archetypes.hpp b/include/boost/iterator/iterator_archetypes.hpp index b0ab188..5fbdf10 100644 --- a/include/boost/iterator/iterator_archetypes.hpp +++ b/include/boost/iterator/iterator_archetypes.hpp @@ -91,9 +91,9 @@ namespace detail template struct read_write_proxy - : assign_proxy - , read_proxy + : read_proxy // Use to inherit from assign_proxy, but that doesn't work. -JGS { + read_write_proxy& operator=(T); }; template