lol idk #1

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

View File

@ -22,7 +22,7 @@ impl<Int:From<i128>+std::ops::Shl<u32,Output=Int>,FracDst:Unsigned> From<i128> f
impl<Int:PartialEq,Frac> PartialEq for Fixed<Int,Frac>{
fn eq(&self,other:&Self)->bool{
self.bits==other.bits
self.bits.eq(&other.bits)
}
}
impl<Int:Eq,Frac> Eq for Fixed<Int,Frac>{}