| 157 | } |
| 158 | template <class E> |
| 159 | constexpr bool operator<(const unexpected<E> &lhs, const unexpected<E> &rhs) { |
| 160 | return lhs.value() < rhs.value(); |
| 161 | } |
| 162 | template <class E> |
| 163 | constexpr bool operator<=(const unexpected<E> &lhs, const unexpected<E> &rhs) { |
| 164 | return lhs.value() <= rhs.value(); |
nothing calls this directly
no outgoing calls
no test coverage detected