Skip to content
Open
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions include/btllib/aahash.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,12 @@ class AAHash
size_t get_pos() const { return pos; }
unsigned get_hash_num() const { return hash_num; }
unsigned get_k() const { return k; }
bool
forward() // NOLINT(readability-convert-member-functions-to-static,-warnings-as-errors)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This function is redundant and removed in the latest ntHash. We can remove it here too.

const
{
return true;
}
uint64_t get_forward_hash() const { return hashes_array[0]; }
unsigned get_level() const { return level; }
const char* get_seq() const { return seq; }
Expand Down
Loading