mirror of
https://github.com/openharmony/third_party_rust_http.git
synced 2026-07-18 20:54:29 -04:00
Remove unnecessary parentheses (#404)
This commit is contained in:
+1
-1
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user