| 16 | class MySingleton { |
| 17 | public: |
| 18 | MySingleton() = default; |
| 19 | ~MySingleton() = default; |
| 20 | MySingleton(const MySingleton &) = delete; |
| 21 | MySingleton &operator=(const MySingleton &) = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected