From 228bef5e04ae975c683fd8de5e7c19059805ebb4 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Wed, 25 Mar 2020 11:31:41 -0700 Subject: [PATCH] Remove unnecessary parentheses (#404) --- src/header/map.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/header/map.rs b/src/header/map.rs index 58349fa..ad6b66c 100644 --- a/src/header/map.rs +++ b/src/header/map.rs @@ -235,7 +235,7 @@ enum Cursor { type Size = u16; /// This limit falls out from above. -const MAX_SIZE: usize = (1 << 15); +const MAX_SIZE: usize = 1 << 15; /// An entry in the hash table. This represents the full hash code for an entry /// as well as the position of the entry in the `entries` vector.