Skip to content

Commit e32979f

Browse files
author
Ralf W. Grosse-Kunstleve
committed
boost/python/object_core.hpp: trac #6890
[SVN r78427]
1 parent af8efb7 commit e32979f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

include/boost/python/object_core.hpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -348,12 +348,12 @@ namespace api
348348
// Macros for forwarding constructors in classes derived from
349349
// object. Derived classes will usually want these as an
350350
// implementation detail
351-
# define BOOST_PYTHON_FORWARD_OBJECT_CONSTRUCTORS_(derived, base) \
352-
inline explicit derived(python::detail::borrowed_reference p) \
353-
: base(p) {} \
354-
inline explicit derived(python::detail::new_reference p) \
355-
: base(p) {} \
356-
inline explicit derived(python::detail::new_non_null_reference p) \
351+
# define BOOST_PYTHON_FORWARD_OBJECT_CONSTRUCTORS_(derived, base) \
352+
inline explicit derived(::boost::python::detail::borrowed_reference p) \
353+
: base(p) {} \
354+
inline explicit derived(::boost::python::detail::new_reference p) \
355+
: base(p) {} \
356+
inline explicit derived(::boost::python::detail::new_non_null_reference p) \
357357
: base(p) {}
358358

359359
# if !defined(BOOST_MSVC) || BOOST_MSVC >= 1300

0 commit comments

Comments
 (0)