| 979 | return lhs.m_ht <= rhs.m_ht; |
| 980 | } |
| 981 | friend bool operator>(const ordered_map& lhs, const ordered_map& rhs) { |
| 982 | return lhs.m_ht > rhs.m_ht; |
| 983 | } |
| 984 | friend bool operator>=(const ordered_map& lhs, const ordered_map& rhs) { |
| 985 | return lhs.m_ht >= rhs.m_ht; |
| 986 | } |
nothing calls this directly
no outgoing calls
no test coverage detected