2
0
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:
Dave Abrahams
2002-08-06 23:44:31 +00:00
parent 2bdf958663
commit f59ed991fe
5 changed files with 12 additions and 12 deletions

View File

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