Skip to content

Commit

Permalink
Fix segment comparisons.
Browse files Browse the repository at this point in the history
  • Loading branch information
TomHarte committed Nov 14, 2023
1 parent ac826f9 commit 2533fd2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions OSBindings/Mac/Clock SignalTests/8088Tests.mm
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,10 @@ void reset() {

bool operator ==(const Segments &rhs) const {
return
es_base_ != rhs.es_base_ &&
cs_base_ != rhs.cs_base_ &&
ds_base_ != rhs.ds_base_ &&
ss_base_ != rhs.ss_base_;
es_base_ == rhs.es_base_ &&
cs_base_ == rhs.cs_base_ &&
ds_base_ == rhs.ds_base_ &&
ss_base_ == rhs.ss_base_;
}

private:
Expand Down

0 comments on commit 2533fd2

Please sign in to comment.