| 401 | // glb_init caller (not a hook, called when the global plugin is initialized). |
| 402 | template <typename T> |
| 403 | auto |
| 404 | wrap_glb_init(T *context, bool execute, CaseTag<1>) -> decltype(_glb_init(context), bool()) |
| 405 | { |
| 406 | if (execute) { |
| 407 | _glb_init(context); |
| 408 | } |
| 409 | return true; |
| 410 | } |
| 411 | |
| 412 | template <typename T> |
| 413 | auto |