2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-28 07:22:31 +00:00

work around gcc problems (gcc 3.2.2 and higher); thanks to John Maddock for the patch!

[SVN r27142]
This commit is contained in:
Ralf W. Grosse-Kunstleve
2005-02-05 07:36:14 +00:00
parent 567e620565
commit 1cfa79554d

View File

@@ -383,9 +383,9 @@ namespace api
template <>
struct object_initializer_impl<false, true>
{
template <class T>
template <class T, class U>
static PyObject*
get(T const& x, ...)
get(T const& x, U)
{
return python::incref(get_managed_object(x, tag));
}