lol idk #1

Open
Quaternions wants to merge 826 commits from StrafesNET/strafe-project:master into master
Showing only changes of commit 46bb2bac4e - Show all commits

View File

@ -65,7 +65,8 @@ impl<const F:usize> Fixed<1,F>{
}
#[inline]
pub const fn to_raw(self)->i64{
self.to_bits().to_bits().digits()[0] as i64
let &[digit]=self.to_bits().to_bits().digits();
digit as i64
}
}