mirror of
https://github.com/boostorg/python.git
synced 2026-01-24 18:12:43 +00:00
rvalue_data -> rvalue_from_python_data
[SVN r14357]
This commit is contained in:
@@ -6,17 +6,19 @@
|
||||
|
||||
#include <boost/python/converter/find_from_python.hpp>
|
||||
#include <boost/python/converter/registrations.hpp>
|
||||
#include <boost/python/converter/from_python_data.hpp>
|
||||
#include <boost/python/converter/rvalue_from_python_data.hpp>
|
||||
#include <boost/python/converter/registrations.hpp>
|
||||
#include <boost/python/detail/wrap_python.hpp>
|
||||
#include <vector>
|
||||
#include <algorithm>
|
||||
|
||||
namespace boost { namespace python { namespace converter {
|
||||
|
||||
BOOST_PYTHON_DECL rvalue_stage1_data find(
|
||||
BOOST_PYTHON_DECL rvalue_from_python_stage1_data find(
|
||||
PyObject* source
|
||||
, rvalue_from_python_registration const* chain)
|
||||
{
|
||||
rvalue_stage1_data data;
|
||||
rvalue_from_python_stage1_data data;
|
||||
data.convertible = 0;
|
||||
for (;chain != 0; chain = chain->next)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user