We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f208e56 commit f433ca5Copy full SHA for f433ca5
src/linclust/kmermatcher.h
@@ -50,14 +50,13 @@ struct SequencePosition{
50
template <bool Include>
51
struct AdjacentSeqArray {
52
void setAdjacentSeq(int index, const unsigned char val) {
53
- adjacentSeq[index] = val;
+ _adjacentSeq[index] = val;
54
}
55
unsigned char getAdjacentSeq(int index) {
56
- return adjacentSeq[index];
+ return _adjacentSeq[index];
57
58
59
- private:
60
- unsigned char adjacentSeq[6];
+ unsigned char _adjacentSeq[6];
61
};
62
63
// save memory when adjacent sequence is unused
0 commit comments