2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-23 05:42:30 +00:00

Further rationalized conversion registry

[SVN r14441]
This commit is contained in:
Dave Abrahams
2002-07-13 18:44:51 +00:00
parent e431318dc0
commit 093aae1f46
17 changed files with 104 additions and 217 deletions

View File

@@ -16,7 +16,7 @@ namespace boost { namespace python { namespace converter {
BOOST_PYTHON_DECL rvalue_from_python_stage1_data rvalue_from_python_stage1(
PyObject* source
, from_python_registration const& converters)
, registration const& converters)
{
rvalue_from_python_chain const* chain = converters.rvalue_chain;
@@ -37,7 +37,7 @@ BOOST_PYTHON_DECL rvalue_from_python_stage1_data rvalue_from_python_stage1(
BOOST_PYTHON_DECL void* get_lvalue_from_python(
PyObject* source
, from_python_registration const& converters)
, registration const& converters)
{
lvalue_from_python_chain const* chain = converters.lvalue_chain;
@@ -76,7 +76,7 @@ namespace
BOOST_PYTHON_DECL rvalue_from_python_chain const* implicit_conversion_chain(
PyObject* source
, from_python_registration const& converters)
, registration const& converters)
{
rvalue_from_python_chain const* chain = converters.rvalue_chain;