| 11151 | |
| 11152 | namespace { |
| 11153 | static auto getSingletons() -> std::vector<ISingleton*>*& { |
| 11154 | static std::vector<ISingleton*>* g_singletons = nullptr; |
| 11155 | if( !g_singletons ) |
| 11156 | g_singletons = new std::vector<ISingleton*>(); |
| 11157 | return g_singletons; |
| 11158 | } |
| 11159 | } |
| 11160 | |
| 11161 | ISingleton::~ISingleton() {} |
no outgoing calls
no test coverage detected