fix warning about unnecessary parens

This commit is contained in:
Sean McArthur
2020-02-17 16:37:56 -08:00
parent c5880076d5
commit 75a0caf220

View File

@@ -54,7 +54,7 @@ struct Pos {
#[derive(Debug, Copy, Clone, Eq, PartialEq)]
struct HashValue(usize);
const MAX_SIZE: usize = (1 << 16);
const MAX_SIZE: usize = 1 << 16;
const DYN_OFFSET: usize = 62;
macro_rules! probe_loop {