| 360 | bool operator!=(RangeEntry const & rhs) const { return m_type != rhs.m_type || m_range != rhs.m_range; } |
| 361 | |
| 362 | friend std::string DebugPrint(RangeEntry const & e) |
| 363 | { |
| 364 | std::ostringstream ss; |
| 365 | ss << classif().GetReadableObjectName(e.m_type) << "; (" << e.m_range.first << "," << e.m_range.second << ")"; |
| 366 | return ss.str(); |
| 367 | } |
| 368 | }; |
| 369 | } // namespace |
| 370 |
nothing calls this directly
no test coverage detected