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