| 275 | // global pre-remap hook caller |
| 276 | template <typename T> |
| 277 | auto |
| 278 | wrap_glb_pre_remap(T *context, bool execute, CaseTag<1>) -> decltype(_glb_pre_remap(context), bool()) |
| 279 | { |
| 280 | if (execute) { |
| 281 | _glb_pre_remap(context); |
| 282 | } |
| 283 | return true; |
| 284 | } |
| 285 | |
| 286 | template <typename T> |
| 287 | auto |
no outgoing calls
no test coverage detected