| 22 | struct Holder |
| 23 | { |
| 24 | Holder( T &a ) : m_val( a ) {} |
| 25 | static void Cleanup (PyObject *capsule) |
| 26 | { |
| 27 | Holder* h = static_cast<Holder*> (PyCapsule_GetPointer (capsule, NULL)); |
nothing calls this directly
no outgoing calls
no test coverage detected