| 43 | template <typename Storage> |
| 44 | struct lambda_tuple_t { |
| 45 | explicit constexpr lambda_tuple_t(Storage&& s) |
| 46 | : storage(std::move(s)) |
| 47 | { } |
| 48 | |
| 49 | using hana_tag = lambda_tuple_tag; |
| 50 | Storage storage; |
nothing calls this directly
no outgoing calls
no test coverage detected