| 39 | |
| 40 | |
| 41 | bool DebugRegisterItem::operator==(const DebugRegisterItem& other) const |
| 42 | { |
| 43 | return (m_name == other.name()) && (m_value == other.value()) && (m_valueStatus == other.valueStatus()) |
| 44 | && (m_hint == other.hint() && (m_used == other.used())); |
| 45 | } |
| 46 | |
| 47 | |
| 48 | bool DebugRegisterItem::operator!=(const DebugRegisterItem& other) const |
nothing calls this directly
no test coverage detected