From c8898caba08090c9cd96e5267d138c119b3d4fb6 Mon Sep 17 00:00:00 2001 From: Raoul Gough Date: Wed, 8 Oct 2003 15:38:07 +0000 Subject: [PATCH] Add typename to container_proxy::value_type to make MSVC happy [SVN r20304] --- include/boost/python/suite/indexing/container_proxy.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/python/suite/indexing/container_proxy.hpp b/include/boost/python/suite/indexing/container_proxy.hpp index 66be5215..b3d7b945 100755 --- a/include/boost/python/suite/indexing/container_proxy.hpp +++ b/include/boost/python/suite/indexing/container_proxy.hpp @@ -86,7 +86,7 @@ namespace boost { namespace python { namespace indexing { { typedef typename raw_iterator_traits::difference_type difference_type; typedef std::random_access_iterator_tag iterator_category; - typedef container_proxy::value_type value_type; + typedef typename container_proxy::value_type value_type; typedef value_type *pointer; typedef value_type reference; // Already has reference semantics