| 2417 | template <typename Derived> |
| 2418 | template <return_value_policy policy, typename... Args> |
| 2419 | object object_api<Derived>::call(Args &&...args) const { |
| 2420 | return operator()<policy>(std::forward<Args>(args)...); |
| 2421 | } |
| 2422 | |
| 2423 | PYBIND11_NAMESPACE_END(detail) |
| 2424 |
no outgoing calls
no test coverage detected