| 144 | |
| 145 | template <typename T, typename K> |
| 146 | bool operator==(const MyType<T, K> &lhs, const MyType<T, K> &rhs) { |
| 147 | return lhs.one == rhs.one && lhs.two == rhs.two; |
| 148 | } |
| 149 | |
| 150 | template <typename T, typename K> |
| 151 | std::ostream &operator<<(std::ostream &stream, const MyType<T, K> &in) { |
nothing calls this directly
no outgoing calls
no test coverage detected