| 82 | template <typename Derived> |
| 83 | class object_api : public pyobject_tag { |
| 84 | object_api() = default; |
| 85 | const Derived &derived() const { return static_cast<const Derived &>(*this); } |
| 86 | friend Derived; |
| 87 |
nothing calls this directly
no outgoing calls
no test coverage detected