| 257 | // global read-request hook caller |
| 258 | template <typename T> |
| 259 | auto |
| 260 | wrap_glb_read_request(T *context, bool execute, CaseTag<1>) -> decltype(_glb_read_request(context), bool()) |
| 261 | { |
| 262 | if (execute) { |
| 263 | _glb_read_request(context); |
| 264 | } |
| 265 | return true; |
| 266 | } |
| 267 | |
| 268 | template <typename T> |
| 269 | auto |
no outgoing calls
no test coverage detected