| 335 | } |
| 336 | |
| 337 | static bool callObjectValidate(const ObjectType type, Object& obj) |
| 338 | { |
| 339 | return visitObject(type, obj, [](auto&& obj) { |
| 340 | return obj->validate(); |
| 341 | }); |
| 342 | } |
| 343 | |
| 344 | static void callObjectUnload(const ObjectType type, Object& obj) |
| 345 | { |
no test coverage detected