Subject: [boost] boost::python::make_setter(&X::y) no longer compiles
From: Jonathan Wakely (jwakely.boost_at_[hidden])
Date: 2015-08-30 08:42:25


This compiled with 1,58, it doesn't with 1.59:

#include <boost/python.hpp>

struct X { int y; };

int main()
{
    boost::python::make_setter(&X::y);
}

Is this intentional? Is it documented somewhere?

The examples in the docs still seem to use this form.