| 12945 | |
| 12946 | namespace { |
| 12947 | static auto getSingletons() -> std::vector<ISingleton*>*& { |
| 12948 | static std::vector<ISingleton*>* g_singletons = nullptr; |
| 12949 | if( !g_singletons ) |
| 12950 | g_singletons = new std::vector<ISingleton*>(); |
| 12951 | return g_singletons; |
| 12952 | } |
| 12953 | } |
| 12954 | |
| 12955 | ISingleton::~ISingleton() {} |
no outgoing calls
no test coverage detected