Merge pull request #1968 from rujialiu/atom-64bit

Make Atom 64-bit regardless of architecture
This commit is contained in:
Mark Thom
2023-08-20 11:50:58 -06:00
committed by GitHub
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),
}
}