mirror of
https://github.com/boostorg/python.git
synced 2026-01-26 18:52:26 +00:00
VC6 bug workarounds
[SVN r14722]
This commit is contained in:
@@ -2,11 +2,11 @@
|
||||
|
||||
namespace boost { namespace python {
|
||||
|
||||
BOOST_PYTHON_DECL detail::new_reference tuple::call(object const& arg)
|
||||
BOOST_PYTHON_DECL detail::new_reference tuple::call(object const& arg_)
|
||||
{
|
||||
return (detail::new_reference)PyObject_CallFunction(
|
||||
(PyObject*)&PyTuple_Type, "(O)",
|
||||
arg.ptr());
|
||||
arg_.ptr());
|
||||
}
|
||||
|
||||
BOOST_PYTHON_DECL tuple::tuple()
|
||||
|
||||
Reference in New Issue
Block a user