Add operator!= to SGBucket
This commit is contained in:
parent
037d5c11a5
commit
4b7361dfe7
@ -310,6 +310,11 @@ public:
|
||||
friend bool operator== ( const SGBucket&, const SGBucket& );
|
||||
};
|
||||
|
||||
inline bool operator!= (const SGBucket& lhs, const SGBucket& rhs)
|
||||
{
|
||||
return !(lhs == rhs);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* \relates SGBucket
|
||||
|
Loading…
Reference in New Issue
Block a user