From 8ca32bb4949d625b3f045f6c79f75d2a8d776d1c Mon Sep 17 00:00:00 2001 From: Joel de Guzman Date: Tue, 12 Aug 2003 18:36:55 +0000 Subject: [PATCH] Minor tweak in preparation for map_indexing_suite.hpp [SVN r19565] --- .../boost/python/suite/indexing/vector_indexing_suite.hpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/include/boost/python/suite/indexing/vector_indexing_suite.hpp b/include/boost/python/suite/indexing/vector_indexing_suite.hpp index 18c080d9..a21d8be3 100644 --- a/include/boost/python/suite/indexing/vector_indexing_suite.hpp +++ b/include/boost/python/suite/indexing/vector_indexing_suite.hpp @@ -19,9 +19,9 @@ namespace boost { namespace python { namespace detail { template - class final + class final_vector_derived_policies : public vector_indexing_suite > {}; + NoProxy, final_vector_derived_policies > {}; } // The vector_indexing_suite class is a predefined indexing_suite derived @@ -43,7 +43,8 @@ namespace boost { namespace python { template < class Container, bool NoProxy = false, - class DerivedPolicies = detail::final > + class DerivedPolicies + = detail::final_vector_derived_policies > class vector_indexing_suite : public indexing_suite {