Skip to content

Commit 7f3acea

Browse files
committed
Fix public/private error.
[SVN r19636]
1 parent da59799 commit 7f3acea

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

include/boost/python/object/pointer_holder.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,9 @@ struct pointer_holder : instance_holder
7373
template <class Pointer, class Value>
7474
struct pointer_holder_back_reference : instance_holder
7575
{
76-
typedef typename python::pointee<Pointer>::type held_type;
7776
private:
77+
typedef typename python::pointee<Pointer>::type held_type;
78+
public:
7879
typedef Value value_type;
7980

8081
// Not sure about this one -- can it work? The source object

0 commit comments

Comments
 (0)