| 10883 | |
| 10884 | namespace { |
| 10885 | static auto getSingletons() -> std::vector<ISingleton*>*& { |
| 10886 | static std::vector<ISingleton*>* g_singletons = nullptr; |
| 10887 | if( !g_singletons ) |
| 10888 | g_singletons = new std::vector<ISingleton*>(); |
| 10889 | return g_singletons; |
| 10890 | } |
| 10891 | } |
| 10892 | |
| 10893 | ISingleton::~ISingleton() {} |
no outgoing calls
no test coverage detected