| 1494 | |
| 1495 | template<class C> |
| 1496 | struct SharedImpl : Shared<C>, vec<byte_t> { |
| 1497 | void destroy() { |
| 1498 | stats.free(categorize<C>::value, this, Stats::SHARED); |
| 1499 | delete this; |
| 1500 | } |
| 1501 | }; |
| 1502 | |
| 1503 | template<> struct implement<Shared<Module>> { using type = SharedImpl<Module>; }; |
| 1504 |
nothing calls this directly
no outgoing calls
no test coverage detected