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