-------------------------------------------------------------------------
| 42 | |
| 43 | //------------------------------------------------------------------------- |
| 44 | bool Address::operator<(const Address& other) const |
| 45 | { |
| 46 | if (hProcess_ != other.hProcess_) |
| 47 | return hProcess_ < other.hProcess_; |
| 48 | |
| 49 | return value_ < other.value_; |
| 50 | } |
| 51 | |
| 52 | //------------------------------------------------------------------------- |
| 53 | std::wostream& operator<<(std::wostream& ostr, const Address& address) |
nothing calls this directly
no outgoing calls
no test coverage detected