File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -257,8 +257,8 @@ struct initialize_wrapper_policies : BasePolicies
257257 template <typename ArgumentPackage>
258258 static PyObject *postcall (const ArgumentPackage &args, PyObject *pResult)
259259 {
260- PyObject *pSelf = detail::get (boost::mpl::int_<iSelf>(), args);
261- detail::initialize_wrapper (
260+ PyObject *pSelf = boost::python:: detail::get (boost::mpl::int_<iSelf>(), args);
261+ boost::python:: detail::initialize_wrapper (
262262 pSelf,
263263 get_pointer ((HeldType)extract<HeldType>(pSelf))
264264 );
@@ -284,8 +284,8 @@ struct post_constructor_policies : BasePolicies
284284 {
285285 BasePolicies::postcall (args, pResult);
286286 m_initializer (
287- *(make_tuple (
288- object (handle<>(incref (detail::get (boost::mpl::int_<iSelf>(), args))))) +
287+ *(boost::python:: make_tuple (
288+ object (handle<>(incref (boost::python:: detail::get (boost::mpl::int_<iSelf>(), args))))) +
289289 boost::python::tuple (handle<>(args.base ))
290290 )
291291 );
You can’t perform that action at this time.
0 commit comments