Change Quot back to Div.

This commit is contained in:
Jack Moffitt 2013-05-10 13:49:17 -06:00
parent 3d745fc43b
commit 19c0fc6465

View file

@ -22,8 +22,8 @@ impl Mul<Au,Au> for Au {
fn mul(&self, other: &Au) -> Au { Au(**self * **other) }
}
impl Quot<Au,Au> for Au {
fn quot(&self, other: &Au) -> Au { Au(**self / **other) }
impl Div<Au,Au> for Au {
fn div(&self, other: &Au) -> Au { Au(**self / **other) }
}
impl Rem<Au,Au> for Au {