| 293 | // global post-remap hook caller |
| 294 | template <typename T> |
| 295 | auto |
| 296 | wrap_glb_post_remap(T *context, bool execute, CaseTag<1>) -> decltype(_glb_post_remap(context), bool()) |
| 297 | { |
| 298 | if (execute) { |
| 299 | _glb_post_remap(context); |
| 300 | } |
| 301 | return true; |
| 302 | } |
| 303 | |
| 304 | template <typename T> |
| 305 | auto |
no outgoing calls
no test coverage detected