| 36 | |
| 37 | namespace detail { |
| 38 | struct ostreamer { |
| 39 | ostream& os; |
| 40 | template <typename T> |
| 41 | void operator()(const T& t) const { |
| 42 | os << t << " "; |
| 43 | } |
| 44 | }; |
| 45 | } |
| 46 | |
| 47 | template <typename... Ts> |
nothing calls this directly
no outgoing calls
no test coverage detected