Skip to content

Commit

Permalink
Removed unused assignment to temporary argument in BloomFilter (#1783)
Browse files Browse the repository at this point in the history
  • Loading branch information
glingy authored Sep 18, 2024
1 parent 5dda4af commit 12c4686
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BloomFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ struct BloomFilter {
private:
std::bitset<256> filter;
static inline uint32_t perfectHash(uint32_t features) {
return features *= 1843993368;
return features * 1843993368;
}

union ScrambleArea {
Expand Down

0 comments on commit 12c4686

Please sign in to comment.