Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r78427 - trunk/boost/python
From: rwgk_at_[hidden]
Date: 2012-05-11 16:39:22


Author: rwgk
Date: 2012-05-11 16:39:21 EDT (Fri, 11 May 2012)
New Revision: 78427
URL: http://svn.boost.org/trac/boost/changeset/78427

Log:
boost/python/object_core.hpp: trac #6890
Text files modified:
   trunk/boost/python/object_core.hpp | 12 ++++++------
   1 files changed, 6 insertions(+), 6 deletions(-)

Modified: trunk/boost/python/object_core.hpp
==============================================================================
--- trunk/boost/python/object_core.hpp (original)
+++ trunk/boost/python/object_core.hpp 2012-05-11 16:39:21 EDT (Fri, 11 May 2012)
@@ -348,12 +348,12 @@
   // 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


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk