| 146 | { |
| 147 | template <class T> |
| 148 | inline PyObject* registry_to_python_value<T>::operator()(argument_type x) const |
| 149 | { |
| 150 | return converter::registered<argument_type>::converters.to_python(&x); |
| 151 | } |
| 152 | |
| 153 | template <class T> |
| 154 | inline PyObject* object_manager_to_python_value<T>::operator()(argument_type x) const |
nothing calls this directly
no test coverage detected