Skip to content

Commit 4f822d7

Browse files
committed
ntcard.cpp: remove unnecessary type cast
1 parent d70137a commit 4f822d7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ntcard.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ stRead(const string& seq, const std::vector<unsigned>& kList, uint16_t* t_Counte
163163
for (unsigned k = 0; k < kList.size(); k++) {
164164
stHashIterator itr(seq, opt::seedSet, 1, 1, kList[k]);
165165
while (itr != itr.end()) {
166-
ntComp((const uint64_t)(*itr)[0], t_Counter + k * opt::nSamp * opt::rBuck);
166+
ntComp((*itr)[0], t_Counter + k * opt::nSamp * opt::rBuck);
167167
++itr;
168168
++totKmer[k];
169169
}

0 commit comments

Comments
 (0)