| 365 | // global send-response hook caller |
| 366 | template <typename T> |
| 367 | auto |
| 368 | wrap_glb_send_response(T *context, bool execute, CaseTag<1>) -> decltype(_glb_send_response(context), bool()) |
| 369 | { |
| 370 | if (execute) { |
| 371 | _glb_send_response(context); |
| 372 | } |
| 373 | return true; |
| 374 | } |
| 375 | |
| 376 | template <typename T> |
| 377 | auto |
no outgoing calls
no test coverage detected