| 30 | |
| 31 | |
| 32 | bool DebugStackItem::operator==(const DebugStackItem& other) const |
| 33 | { |
| 34 | return (m_offset == other.offset()) && (m_address == other.address()) && (m_value == other.value()) |
| 35 | && (m_valueStatus == other.valueStatus()) && (m_hint == other.hint()); |
| 36 | } |
| 37 | |
| 38 | |
| 39 | bool DebugStackItem::operator!=(const DebugStackItem& other) const |
nothing calls this directly
no test coverage detected