| 347 | // global read-response hook caller |
| 348 | template <typename T> |
| 349 | auto |
| 350 | wrap_glb_read_response(T *context, bool execute, CaseTag<1>) -> decltype(_glb_read_response(context), bool()) |
| 351 | { |
| 352 | if (execute) { |
| 353 | _glb_read_response(context); |
| 354 | } |
| 355 | return true; |
| 356 | } |
| 357 | |
| 358 | template <typename T> |
| 359 | auto |
no outgoing calls
no test coverage detected