| 16 | // Declaration of a helper to accumulate operator() overloads from lambdas. |
| 17 | template<typename ReturnType, typename... Lambdas> |
| 18 | struct lambda_visitor_helper; |
| 19 | |
| 20 | // Specialization for initial case without any lambda |
| 21 | template<typename ReturnType> |
nothing calls this directly
no outgoing calls
no test coverage detected