2
0
mirror of https://github.com/boostorg/python.git synced 2026-02-02 21:12:15 +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

@@ -3,11 +3,11 @@
namespace boost { namespace python {
BOOST_PYTHON_DECL detail::new_reference str::call(object const& arg)
BOOST_PYTHON_DECL detail::new_reference str::call(object const& arg_)
{
return (detail::new_reference)PyObject_CallFunction(
(PyObject*)&PyString_Type, "(O)",
arg.ptr());
arg_.ptr());
}
BOOST_PYTHON_DECL str::str(const char* s)