From c7ad999adb7f33e79ed4fcaf96fa1f82bdc92159 Mon Sep 17 00:00:00 2001 From: Raoul Gough Date: Wed, 3 Dec 2003 12:17:33 +0000 Subject: [PATCH] Fix for MSVC6 [SVN r21114] --- 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 84fb10f1..beddf022 100755 --- a/include/boost/python/suite/indexing/container_proxy.hpp +++ b/include/boost/python/suite/indexing/container_proxy.hpp @@ -392,7 +392,7 @@ namespace boost { namespace python { namespace indexing { container_proxy ::at (size_type index) const { - pointer_impl const &ptr (m_proxies.BOOST_PYTHON_INDEXING_AT (index)); + pointer_impl const &ptr = m_proxies.BOOST_PYTHON_INDEXING_AT (index); assert (ptr->owner() == this); assert (ptr->index() == index); return const_reference (ptr);