Skip to content

Commit

Permalink
Style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
keeperofdakeys committed Dec 31, 2016
1 parent 22f788c commit e9b5839
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions src/librustc_resolve/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ use syntax::ext::expand::{Expansion, mark_tts};
use syntax::ext::hygiene::Mark;
use syntax::ext::tt::macro_rules;
use syntax::feature_gate::{emit_feature_err, GateIssue};
use syntax::fold::Folder;
use syntax::fold;
use syntax::fold::{self, Folder};
use syntax::ptr::P;
use syntax::symbol::keywords;
use syntax::util::lev_distance::find_best_match_for_name;
Expand Down
3 changes: 1 addition & 2 deletions src/libsyntax_ext/deriving/custom.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ impl<'a> Visitor<'a> for MarkAttrs<'a> {
}
}

fn visit_mac(&mut self, _mac: &Mac) {
}
fn visit_mac(&mut self, _mac: &Mac) {}
}

pub struct CustomDerive {
Expand Down
3 changes: 1 addition & 2 deletions src/test/run-pass-fulldeps/proc-macro/struct-field-macro.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,4 @@ struct S {
x: int!(),
}

fn main() {
}
fn main() {}

0 comments on commit e9b5839

Please sign in to comment.