| 143 | // cache-lookup-complete hook caller |
| 144 | template <typename T> |
| 145 | auto |
| 146 | wrap_cache_lookup(T *context, bool execute, CaseTag<1>) -> decltype(_do_cache_lookup(context), bool()) |
| 147 | { |
| 148 | if (execute) { |
| 149 | _do_cache_lookup(context); |
| 150 | } |
| 151 | return true; |
| 152 | } |
| 153 | |
| 154 | template <typename T> |
| 155 | auto |
no outgoing calls
no test coverage detected