summaryrefslogtreecommitdiff
path: root/boost/python/object_core.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/python/object_core.hpp')
-rw-r--r--boost/python/object_core.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/boost/python/object_core.hpp b/boost/python/object_core.hpp
index 4d81e2eae8..9c9dc10bfc 100644
--- a/boost/python/object_core.hpp
+++ b/boost/python/object_core.hpp
@@ -348,12 +348,12 @@ namespace api
// Macros for forwarding constructors in classes derived from
// object. Derived classes will usually want these as an
// implementation detail
-# define BOOST_PYTHON_FORWARD_OBJECT_CONSTRUCTORS_(derived, base) \
- inline explicit derived(python::detail::borrowed_reference p) \
- : base(p) {} \
- inline explicit derived(python::detail::new_reference p) \
- : base(p) {} \
- inline explicit derived(python::detail::new_non_null_reference p) \
+# define BOOST_PYTHON_FORWARD_OBJECT_CONSTRUCTORS_(derived, base) \
+ inline explicit derived(::boost::python::detail::borrowed_reference p) \
+ : base(p) {} \
+ inline explicit derived(::boost::python::detail::new_reference p) \
+ : base(p) {} \
+ inline explicit derived(::boost::python::detail::new_non_null_reference p) \
: base(p) {}
# if !defined(BOOST_MSVC) || BOOST_MSVC >= 1300