| 1589 | > |
| 1590 | struct TupleElementPrinter { |
| 1591 | static void print(const Tuple& tuple, std::ostream& os) { |
| 1592 | os << (N ? ", " : " ") |
| 1593 | << ::Catch::Detail::stringify(std::get<N>(tuple)); |
| 1594 | TupleElementPrinter<Tuple, N + 1>::print(tuple, os); |
| 1595 | } |
| 1596 | }; |
| 1597 | |
| 1598 | template< |
nothing calls this directly
no test coverage detected