2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-24 06:02:14 +00:00

GCC 2.96 workaround

[SVN r15866]
This commit is contained in:
Dave Abrahams
2002-10-10 16:44:47 +00:00
parent 0dc693a9e3
commit 682f175412

View File

@@ -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>("list_int")