MCPcopy Create free account
hub / github.com/Vector35/debugger / operator==

Method operator==

api/debuggerapi.h:286–289  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

284 DebugProcess(std::uint32_t pid, std::string name) : m_pid(pid), m_processName(name) {}
285
286 bool operator==(const DebugProcess& rhs) const
287 {
288 return (m_pid == rhs.m_pid) && (m_processName == rhs.m_processName);
289 }
290
291 bool operator!=(const DebugProcess& rhs) const { return !(*this == rhs); }
292 };

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected