Skip to content

Commit 2d9871f

Browse files
committed
Fix unresolved symbol error with MSVC.
1 parent 30c9eb1 commit 2d9871f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/boost/python/object/make_ptr_instance.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ struct make_ptr_instance
5858
static inline PyTypeObject* get_derived_class_object(boost::python::detail::true_, U const volatile* x)
5959
{
6060
converter::registration const* r = converter::registry::query(
61-
type_info(typeid(*get_pointer(x)))
61+
type_info(typeid(*x))
6262
);
6363
return r ? r->m_class_object : 0;
6464
}

0 commit comments

Comments
 (0)