Skip to content

Commit 0b8b88a

Browse files
author
Ralf W. Grosse-Kunstleve
committed
merging current boost/python and libs/python from trunk into release branch
[SVN r79011]
1 parent 76db331 commit 0b8b88a

File tree

5 files changed

+7
-10
lines changed

5 files changed

+7
-10
lines changed

include/boost/python/extract.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
# include <boost/python/detail/copy_ctor_mutates_rhs.hpp>
2020
# include <boost/python/detail/void_ptr.hpp>
2121
# include <boost/python/detail/void_return.hpp>
22-
# include <boost/utility.hpp>
2322
# include <boost/call_traits.hpp>
2423

2524
#if BOOST_WORKAROUND(BOOST_MSVC, <= 1300) || BOOST_WORKAROUND(BOOST_INTEL_WIN, <= 900)

include/boost/python/instance_holder.hpp

100755100644
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
# include <boost/python/detail/prefix.hpp>
99

10-
# include <boost/utility.hpp>
10+
# include <boost/noncopyable.hpp>
1111
# include <boost/python/type_id.hpp>
1212
# include <cstddef>
1313

include/boost/python/object/class.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
# define CLASS_DWA20011214_HPP
77

88
# include <boost/python/detail/prefix.hpp>
9-
# include <boost/utility.hpp>
109
# include <boost/python/object_core.hpp>
1110
# include <boost/python/type_id.hpp>
1211
# include <cstddef>

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

include/boost/python/scope.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
# include <boost/python/detail/prefix.hpp>
99
# include <boost/python/object.hpp>
1010
# include <boost/python/refcount.hpp>
11-
# include <boost/utility.hpp>
1211

1312
namespace boost { namespace python {
1413

0 commit comments

Comments
 (0)