Skip to content

Commit 12c4686

Browse files
authored
Removed unused assignment to temporary argument in BloomFilter (#1783)
1 parent 5dda4af commit 12c4686

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BloomFilter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ struct BloomFilter {
3030
private:
3131
std::bitset<256> filter;
3232
static inline uint32_t perfectHash(uint32_t features) {
33-
return features *= 1843993368;
33+
return features * 1843993368;
3434
}
3535

3636
union ScrambleArea {

0 commit comments

Comments
 (0)