Skip to content

Commit f433ca5

Browse files
committed
fix: adjacentSeq private -> public
1 parent f208e56 commit f433ca5

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/linclust/kmermatcher.h

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,13 @@ struct SequencePosition{
5050
template <bool Include>
5151
struct AdjacentSeqArray {
5252
void setAdjacentSeq(int index, const unsigned char val) {
53-
adjacentSeq[index] = val;
53+
_adjacentSeq[index] = val;
5454
}
5555
unsigned char getAdjacentSeq(int index) {
56-
return adjacentSeq[index];
56+
return _adjacentSeq[index];
5757
}
5858

59-
private:
60-
unsigned char adjacentSeq[6];
59+
unsigned char _adjacentSeq[6];
6160
};
6261

6362
// save memory when adjacent sequence is unused

0 commit comments

Comments
 (0)