also add operator !=

This commit is contained in:
2021-06-05 11:44:29 +02:00
parent 09ec8a252d
commit b7352f53bb

View File

@ -54,6 +54,10 @@ public:
{ {
return in.getHash() == getHash(); return in.getHash() == getHash();
} }
bool operator!=(const Description& in) const
{
return !operator==(in);
}
}; };
static constexpr size_t BUFFER_DEPTH = 8; static constexpr size_t BUFFER_DEPTH = 8;