lol idk #1

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

View File

@ -113,7 +113,7 @@ macro_rules! impl_additive_assign_operator {
BInt::<N>:From<U>, BInt::<N>:From<U>,
{ {
fn $method(&mut self, other: U) { fn $method(&mut self, other: U) {
self.bits.$method(BInt::<N>::from(other)<<F as u32); self.bits.$method(BInt::<N>::from(other).shl(F as u32));
} }
} }
}; };