| 3838 | \endrst */ |
| 3839 | template <class T> |
| 3840 | function get_override(const T *this_ptr, const char *name) { |
| 3841 | auto *tinfo = detail::get_type_info(typeid(T)); |
| 3842 | return tinfo ? detail::get_type_override(this_ptr, tinfo, name) : function(); |
| 3843 | } |
| 3844 | |
| 3845 | #define PYBIND11_OVERRIDE_IMPL(ret_type, cname, name, ...) \ |
| 3846 | do { \ |
no test coverage detected