Skip to content

Commit

Permalink
Run rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
philipc committed Oct 9, 2016
1 parent 6d59a0d commit 717a73e
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/abbrev.rs
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,10 @@ pub mod tests {
#[test]
fn test_abbreviations_insert() {
fn abbrev(code: u64) -> Abbreviation {
Abbreviation::new(code, constants::DwTag(code), constants::DW_CHILDREN_no, vec![])
Abbreviation::new(code,
constants::DwTag(code),
constants::DW_CHILDREN_no,
vec![])
}

fn assert_abbrev(abbrevs: &Abbreviations, code: u64) {
Expand Down Expand Up @@ -501,7 +504,10 @@ pub mod tests {
#[cfg(target_pointer_width = "32")]
fn test_abbreviations_insert_32() {
fn abbrev(code: u64) -> Abbreviation {
Abbreviation::new(code, constants::DwTag(code), constants::DW_CHILDREN_no, vec![])
Abbreviation::new(code,
constants::DwTag(code),
constants::DW_CHILDREN_no,
vec![])
}

fn assert_abbrev(abbrevs: &Abbreviations, code: u64) {
Expand Down

0 comments on commit 717a73e

Please sign in to comment.