Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix linux font styles. #394

Merged
merged 3 commits into from Apr 23, 2013
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Changen Div to Quot and Mod to Rem.

  • Loading branch information
metajack committed Apr 22, 2013
commit 5e4d59423b6888e0071c8bd05fc77fb78119d220
@@ -22,12 +22,12 @@ impl Mul<Au,Au> for Au {
fn mul(&self, other: &Au) -> Au { Au(**self * **other) }
}

impl Div<Au,Au> for Au {
fn div(&self, other: &Au) -> Au { Au(**self / **other) }
impl Quot<Au,Au> for Au {
fn quot(&self, other: &Au) -> Au { Au(**self / **other) }
}

impl Modulo<Au,Au> for Au {
fn modulo(&self, other: &Au) -> Au { Au(**self % **other) }
impl Rem<Au,Au> for Au {
fn rem(&self, other: &Au) -> Au { Au(**self % **other) }
}

impl Neg<Au> for Au {
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.