Skip to content

Commit

Permalink
fair enough, clang
Browse files Browse the repository at this point in the history
  • Loading branch information
glennhickey committed Oct 6, 2023
1 parent c162ee3 commit be890f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rgfa.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ class RGFACover {
const string* name;
int64_t trav_idx;
pair<int64_t, int64_t> fragment;
bool operator<(const RankedFragment& f2) {
bool operator<(const RankedFragment& f2) const {
// note: name comparison is flipped because we want to select high coverage / low name
return this->coverage < f2.coverage || (this->coverage == f2.coverage && *this->name > *f2.name);
}
Expand Down

1 comment on commit be890f3

@adamnovak
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

vg CI tests complete for branch rgfa2. View the full report here.

2 tests passed, 0 tests failed and 0 tests skipped in 5577 seconds

Please sign in to comment.