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

GCC 2.96 bug workaround

[SVN r15864]
This commit is contained in:
Dave Abrahams
2002-10-10 15:59:12 +00:00
parent f1a709e074
commit 654354e681

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")