operator !=

pull/1072/head
Jeff Becker 4 years ago
parent 03c13f4261
commit 8c82bfe5bf
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

@ -46,6 +46,12 @@ namespace llarp
|| m_Version < other.m_Version;
}
bool
operator!=(const RouterVersion* other) const
{
return !(*this == other);
}
bool
operator==(const RouterVersion& other) const
{

Loading…
Cancel
Save