| 3944 | |
| 3945 | template <class T> |
| 3946 | inline function get_overload(const T *this_ptr, const char *name) { |
| 3947 | return get_override(this_ptr, name); |
| 3948 | } |
| 3949 | |
| 3950 | #define PYBIND11_OVERLOAD_INT(ret_type, cname, name, ...) \ |
| 3951 | PYBIND11_OVERRIDE_IMPL(PYBIND11_TYPE(ret_type), PYBIND11_TYPE(cname), name, __VA_ARGS__) |
nothing calls this directly
no test coverage detected