Skip to content

Commit b04d9d3

Browse files
committed
fix: evade unused parameter check
1 parent a0013e1 commit b04d9d3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/linclust/kmermatcher.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ struct AdjacentSeqArray {
6363
// save memory when adjacent sequence is unused
6464
template <>
6565
struct AdjacentSeqArray<false> {
66-
void setAdjacentSeq(const int index, const unsigned char val) {
66+
void setAdjacentSeq(const int, const unsigned char) {
6767
Debug(Debug::ERROR) << "Invalid write attempt at adjacent sequence array";
6868
};
69-
unsigned char getAdjacentSeq(int index) {
69+
unsigned char getAdjacentSeq(int) {
7070
Debug(Debug::ERROR) << "Invalid read attempt at adjacent sequence array";
7171
return '\0';
7272
}

0 commit comments

Comments
 (0)