Boost C++ Libraries: Ticket #6890: BOOST_PYTHON_FORWARD_OBJECT_CONSTRUCTORS_ should use ::boost::python https://svn.boost.org/trac10/ticket/6890 <p> # define BOOST_PYTHON_FORWARD_OBJECT_CONSTRUCTORS_(derived, base) \ </p> <blockquote> <p> inline explicit derived(python::detail::borrowed_reference p) \ </p> <blockquote> <p> : base(p) {} \ </p> </blockquote> <p> inline explicit derived(python::detail::new_reference p) \ </p> <blockquote> <p> : base(p) {} \ </p> </blockquote> <p> inline explicit derived(python::detail::new_non_null_reference p) \ </p> <blockquote> <p> : base(p) {} </p> </blockquote> </blockquote> <p> should be </p> <p> # define BOOST_PYTHON_FORWARD_OBJECT_CONSTRUCTORS_(derived, base) \ </p> <blockquote> <p> inline explicit derived(::boost::python::detail::borrowed_reference p) \ </p> <blockquote> <p> : base(p) {} \ </p> </blockquote> <p> inline explicit derived(::boost::python::detail::new_reference p) \ </p> <blockquote> <p> : base(p) {} \ </p> </blockquote> <p> inline explicit derived(::boost::python::detail::new_non_null_reference p) \ </p> <blockquote> <p> : base(p) {} </p> </blockquote> </blockquote> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/6890 Trac 1.4.3 anonymous Fri, 11 May 2012 10:36:05 GMT component changed; owner set https://svn.boost.org/trac10/ticket/6890#comment:1 https://svn.boost.org/trac10/ticket/6890#comment:1 <ul> <li><strong>owner</strong> set to <span class="trac-author">Ralf W. Grosse-Kunstleve</span> </li> <li><strong>component</strong> <span class="trac-field-old">None</span> → <span class="trac-field-new">Python</span> </li> </ul> Ticket Ralf W. Grosse-Kunstleve Fri, 11 May 2012 20:40:35 GMT status changed; resolution set https://svn.boost.org/trac10/ticket/6890#comment:2 https://svn.boost.org/trac10/ticket/6890#comment:2 <ul> <li><strong>status</strong> <span class="trac-field-old">new</span> → <span class="trac-field-new">closed</span> </li> <li><strong>resolution</strong> → <span class="trac-field-new">fixed</span> </li> </ul> <p> checked in with svn trunk rev. 78427 </p> Ticket