Make Atom 64-bit regardless of architecture

This commit is contained in:
Rujia Liu
2023-08-20 19:43:13 +08:00
parent 7da321ab4f
commit f6d3b2f896
3 changed files with 9 additions and 9 deletions

View File

@@ -27,7 +27,7 @@ pub struct BranchNumber {
impl Default for BranchNumber {
fn default() -> Self {
Self {
branch_num: Rational::from(1usize << 63),
branch_num: Rational::from(1u64 << 63),
delta: Rational::from(1),
}
}