also add operator !=
This commit is contained in:
parent
09ec8a252d
commit
b7352f53bb
1 changed files with 4 additions and 0 deletions
|
|
@ -54,6 +54,10 @@ public:
|
|||
{
|
||||
return in.getHash() == getHash();
|
||||
}
|
||||
bool operator!=(const Description& in) const
|
||||
{
|
||||
return !operator==(in);
|
||||
}
|
||||
};
|
||||
|
||||
static constexpr size_t BUFFER_DEPTH = 8;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue