From 654354e681bd72901f3c809ade564136b2d8790a Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Thu, 10 Oct 2002 15:59:12 +0000 Subject: [PATCH] GCC 2.96 bug workaround [SVN r15864] --- test/iterator.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test/iterator.cpp b/test/iterator.cpp index 93d4c009..a52e0710 100644 --- a/test/iterator.cpp +++ b/test/iterator.cpp @@ -79,6 +79,7 @@ private: BOOST_PYTHON_MODULE(iterator_ext) { + using boost::python::iterator; // gcc 2.96 bug workaround def("range", &::range); class_("list_int")