| 24 | using namespace std; |
| 25 | |
| 26 | DebugStackItem::DebugStackItem( |
| 27 | ptrdiff_t offset, uint64_t address, uint64_t value, std::string hint, DebugStackValueStatus valueStatus) : |
| 28 | m_offset(offset), m_address(address), m_value(value), m_hint(std::move(hint)), m_valueStatus(valueStatus) |
| 29 | {} |
| 30 | |
| 31 | |
| 32 | bool DebugStackItem::operator==(const DebugStackItem& other) const |
nothing calls this directly
no outgoing calls
no test coverage detected