Remove unnecessary parentheses (#404)

This commit is contained in:
Sean McArthur
2020-03-25 11:31:41 -07:00
committed by GitHub
parent 13a8a5734b
commit 228bef5e04
+1 -1
View File
@@ -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.