File tree Expand file tree Collapse file tree 5 files changed +12
-12
lines changed
Expand file tree Collapse file tree 5 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -24,11 +24,11 @@ namespace
2424 }
2525}
2626
27- BOOST_PYTHON_DECL detail::new_reference dict::call (object const & arg )
27+ BOOST_PYTHON_DECL detail::new_reference dict::call (object const & arg_ )
2828{
2929 return (detail::new_reference)PyObject_CallFunction (
3030 (PyObject*)&PyDict_Type, " (O)" ,
31- arg .ptr ());
31+ arg_ .ptr ());
3232}
3333
3434BOOST_PYTHON_DECL dict::dict ()
Original file line number Diff line number Diff line change 77
88namespace boost { namespace python {
99
10- BOOST_PYTHON_DECL detail::new_non_null_reference list::call (object const & arg )
10+ BOOST_PYTHON_DECL detail::new_non_null_reference list::call (object const & arg_ )
1111{
1212 return (detail::new_non_null_reference)
1313 (expect_non_null)(
1414 PyObject_CallFunction (
1515 (PyObject*)&PyList_Type, " (O)" ,
16- arg .ptr ()));
16+ arg_ .ptr ()));
1717}
1818
1919BOOST_PYTHON_DECL list::list ()
Original file line number Diff line number Diff line change 77
88namespace boost { namespace python {
99
10- BOOST_PYTHON_DECL detail::new_non_null_reference long_::call (object const & arg )
10+ BOOST_PYTHON_DECL detail::new_non_null_reference long_::call (object const & arg_ )
1111{
1212 return (detail::new_non_null_reference)PyObject_CallFunction (
1313 (PyObject*)&PyLong_Type, " (O)" ,
14- arg .ptr ());
14+ arg_ .ptr ());
1515}
1616
17- BOOST_PYTHON_DECL detail::new_non_null_reference long_::call (object const & arg , object const & base)
17+ BOOST_PYTHON_DECL detail::new_non_null_reference long_::call (object const & arg_ , object const & base)
1818{
1919 return (detail::new_non_null_reference)PyObject_CallFunction (
2020 (PyObject*)&PyLong_Type, " (OO)" ,
21- arg .ptr (), base.ptr ());
21+ arg_ .ptr (), base.ptr ());
2222}
2323
2424BOOST_PYTHON_DECL long_::long_ ()
Original file line number Diff line number Diff line change 33
44namespace boost { namespace python {
55
6- BOOST_PYTHON_DECL detail::new_reference str::call (object const & arg )
6+ BOOST_PYTHON_DECL detail::new_reference str::call (object const & arg_ )
77{
88 return (detail::new_reference)PyObject_CallFunction (
99 (PyObject*)&PyString_Type, " (O)" ,
10- arg .ptr ());
10+ arg_ .ptr ());
1111}
1212
1313BOOST_PYTHON_DECL str::str (const char * s)
Original file line number Diff line number Diff line change 22
33namespace boost { namespace python {
44
5- BOOST_PYTHON_DECL detail::new_reference tuple::call (object const & arg )
5+ BOOST_PYTHON_DECL detail::new_reference tuple::call (object const & arg_ )
66{
77 return (detail::new_reference)PyObject_CallFunction (
88 (PyObject*)&PyTuple_Type, " (O)" ,
9- arg .ptr ());
9+ arg_ .ptr ());
1010}
1111
1212BOOST_PYTHON_DECL tuple::tuple ()
You can’t perform that action at this time.
0 commit comments