| 35 | struct ExampleST : std::enable_shared_from_this<ExampleST> { |
| 36 | int value; |
| 37 | ExampleST(int value) : value(value) { created++; } |
| 38 | ~ExampleST() { deleted++; } |
| 39 | |
| 40 | static ExampleST *make(int value) { return new ExampleST(value); } |
nothing calls this directly
no outgoing calls
no test coverage detected