| 311 | // global cache-lookup hook caller |
| 312 | template <typename T> |
| 313 | auto |
| 314 | wrap_glb_cache_lookup(T *context, bool execute, CaseTag<1>) -> decltype(_glb_cache_lookup(context), bool()) |
| 315 | { |
| 316 | if (execute) { |
| 317 | _glb_cache_lookup(context); |
| 318 | } |
| 319 | return true; |
| 320 | } |
| 321 | |
| 322 | template <typename T> |
| 323 | auto |