mirror of
https://github.com/codership/wsrep-lib.git
synced 2025-07-28 20:02:00 +03:00
Renamed invalid to undefined. More utility functions.
This commit is contained in:
@ -58,6 +58,10 @@ namespace wsrep
|
||||
{
|
||||
return (seqno_ == other.seqno_);
|
||||
}
|
||||
bool operator!=(seqno other) const
|
||||
{
|
||||
return !(seqno_ == other.seqno_);
|
||||
}
|
||||
seqno operator+(seqno other) const
|
||||
{
|
||||
return (seqno(seqno_ + other.seqno_));
|
||||
|
Reference in New Issue
Block a user