We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c98c26 commit d6f4631Copy full SHA for d6f4631
mallockit/src/space/mod.rs
@@ -15,7 +15,7 @@ use std::marker::ConstParamTy;
15
pub struct SpaceId(pub(crate) u8);
16
17
impl SpaceId {
18
- pub const LOG_MAX_SPACE_SIZE: usize = 40;
+ pub const LOG_MAX_SPACE_SIZE: usize = 41;
19
pub(crate) const SHIFT: usize = Self::LOG_MAX_SPACE_SIZE;
20
pub(crate) const MASK: usize = 0b1111 << Self::SHIFT;
21
0 commit comments