We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0013e1 commit b04d9d3Copy full SHA for b04d9d3
1 file changed
src/linclust/kmermatcher.h
@@ -63,10 +63,10 @@ struct AdjacentSeqArray {
63
// save memory when adjacent sequence is unused
64
template <>
65
struct AdjacentSeqArray<false> {
66
- void setAdjacentSeq(const int index, const unsigned char val) {
+ void setAdjacentSeq(const int, const unsigned char) {
67
Debug(Debug::ERROR) << "Invalid write attempt at adjacent sequence array";
68
};
69
- unsigned char getAdjacentSeq(int index) {
+ unsigned char getAdjacentSeq(int) {
70
Debug(Debug::ERROR) << "Invalid read attempt at adjacent sequence array";
71
return '\0';
72
}
0 commit comments