| 347 | |
| 348 | |
| 349 | void destroy() { |
| 350 | while (!plugins.empty()) { |
| 351 | Plugin* plugin = plugins.back(); |
| 352 | INFO("Destroying plugin %s", plugin->name.c_str()); |
| 353 | destroyPlugin(plugin); |
| 354 | plugins.pop_back(); |
| 355 | } |
| 356 | assert(plugins.empty()); |
| 357 | } |
| 358 | |
| 359 | |
| 360 | void settingsMergeJson(json_t* rootJ) { |
nothing calls this directly
no test coverage detected