2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-25 18:32:24 +00:00

Fix for MSVC6

[SVN r21114]
This commit is contained in:
Raoul Gough
2003-12-03 12:17:33 +00:00
parent 04e16988ae
commit c7ad999adb

View File

@@ -392,7 +392,7 @@ namespace boost { namespace python { namespace indexing {
container_proxy<Container, Holder, Generator>
::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);