| 13 | |
| 14 | namespace cfg { |
| 15 | struct printer : ut::printer { |
| 16 | template <class T> |
| 17 | auto& operator<<(T&& t) { |
| 18 | std::cerr << std::forward<T>(t); |
| 19 | return *this; |
| 20 | } |
| 21 | }; |
| 22 | } // namespace cfg |
| 23 | |
| 24 | template <> |
nothing calls this directly
no outgoing calls
no test coverage detected