MCPcopy Create free account
hub / github.com/OpenCppCoverage/OpenCppCoverage / operator<

Method operator<

CppCoverage/Address.cpp:44–50  ·  view source on GitHub ↗

-------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected