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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user