mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-26 08:49:37 +00:00
Fix segment comparisons.
This commit is contained in:
parent
ac826f90c3
commit
2533fd2da9
@ -127,10 +127,10 @@ class Segments {
|
|||||||
|
|
||||||
bool operator ==(const Segments &rhs) const {
|
bool operator ==(const Segments &rhs) const {
|
||||||
return
|
return
|
||||||
es_base_ != rhs.es_base_ &&
|
es_base_ == rhs.es_base_ &&
|
||||||
cs_base_ != rhs.cs_base_ &&
|
cs_base_ == rhs.cs_base_ &&
|
||||||
ds_base_ != rhs.ds_base_ &&
|
ds_base_ == rhs.ds_base_ &&
|
||||||
ss_base_ != rhs.ss_base_;
|
ss_base_ == rhs.ss_base_;
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
Loading…
Reference in New Issue
Block a user