| 973 | return lhs.m_ht != rhs.m_ht; |
| 974 | } |
| 975 | friend bool operator<(const ordered_map& lhs, const ordered_map& rhs) { |
| 976 | return lhs.m_ht < rhs.m_ht; |
| 977 | } |
| 978 | friend bool operator<=(const ordered_map& lhs, const ordered_map& rhs) { |
| 979 | return lhs.m_ht <= rhs.m_ht; |
| 980 | } |
nothing calls this directly
no outgoing calls
no test coverage detected