Skip to content

Commit

Permalink
fix: evade unused parameter check
Browse files Browse the repository at this point in the history
  • Loading branch information
leejoey0921 committed Aug 29, 2024
1 parent 2952c08 commit 3ce4fe5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/linclust/kmermatcher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ KmerPosition<T, IncludeAdjacentSeq> * doComputation(size_t &totalKmers, size_t h

template <int TYPE, typename T>
size_t assignGroup(KmerPosition<T, false> *hashSeqPair, size_t splitKmerCount, bool includeOnlyExtendable, int covMode, float covThr,
SequenceWeights *sequenceWeights, float weightThr, BaseMatrix *subMat, float &hashSeqBuffer) {
SequenceWeights *sequenceWeights, float weightThr, BaseMatrix *, float &) {

size_t writePos=0;
size_t prevHash = hashSeqPair[0].kmer;
Expand Down

0 comments on commit 3ce4fe5

Please sign in to comment.