Fix pointer to reference error in type_caster on MSVC (#583)

This commit is contained in:
Dean Moldovan
2017-01-03 11:52:05 +01:00
committed by Wenzel Jakob
parent 2723a38820
commit 5f07facef5
5 changed files with 8 additions and 8 deletions

View File

@@ -73,7 +73,7 @@ public:
PYBIND11_TYPE_CASTER(type, _("Callable[[") +
argument_loader<Args...>::arg_names() + _("], ") +
type_caster<retval_type>::name() +
make_caster<retval_type>::name() +
_("]"));
};