2
0
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:
Dave Abrahams
2002-07-08 21:35:18 +00:00
parent 182b6755f5
commit 7d3227128c
3 changed files with 18 additions and 11 deletions

View File

@@ -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)
{