Skip to content

Commit cf46535

Browse files
committed
instance_holder moved to boost::python
[SVN r13994]
1 parent 91e2e6f commit cf46535

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

include/boost/python/to_python_indirect.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ namespace detail
3131
{
3232
struct make_owning_holder
3333
{
34-
typedef objects::instance_holder* result_type;
34+
typedef instance_holder* result_type;
3535
template <class T>
3636
static result_type execute(T* p)
3737
{
@@ -49,7 +49,7 @@ namespace detail
4949

5050
struct make_reference_holder
5151
{
52-
typedef objects::instance_holder* result_type;
52+
typedef instance_holder* result_type;
5353
template <class T>
5454
static result_type execute(T* p)
5555
{
@@ -110,7 +110,7 @@ inline PyObject* to_python_indirect<T,MakeHolder>::operator()(T x) const
110110

111111
// Build a value_holder to contain the object using the copy
112112
// constructor
113-
objects::instance_holder* p =
113+
instance_holder* p =
114114
detail::unwind_type<MakeHolder>(x);
115115

116116
// Install it in the instance

0 commit comments

Comments
 (0)