make_tuple with boost::python under Visual Studio 9
- by celil
Trying to build the following simple example
#include <boost/python.hpp>
using namespace boost::python;
tuple head_and_tail(object sequence)
{
return make_tuple(sequence[0],sequence[-1]);
}
available here, I end up with this compilation error under Visual Studio 9
error C2668: 'boost::python::make_tuple' : ambiguous call to…