From 682f175412d5ed96a7ff47f3319d3c29a34cde8f Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Thu, 10 Oct 2002 16:44:47 +0000 Subject: [PATCH] GCC 2.96 workaround [SVN r15866] --- 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")