Skip to content

Commit 35d60da

Browse files
authored
Remove unnecessary parentheses (#404)
1 parent 26681dd commit 35d60da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/header/map.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ enum Cursor {
235235
type Size = u16;
236236

237237
/// This limit falls out from above.
238-
const MAX_SIZE: usize = (1 << 15);
238+
const MAX_SIZE: usize = 1 << 15;
239239

240240
/// An entry in the hash table. This represents the full hash code for an entry
241241
/// as well as the position of the entry in the `entries` vector.

0 commit comments

Comments
 (0)