| 11258 | class CartesianProductHolder { |
| 11259 | public: |
| 11260 | CartesianProductHolder(const Gen&... g) : generators_(g...) {} |
| 11261 | template <typename... T> |
| 11262 | operator ParamGenerator<::std::tuple<T...>>() const { |
| 11263 | return ParamGenerator<::std::tuple<T...>>( |
nothing calls this directly
no outgoing calls
no test coverage detected